diff --git a/4/.gitignore b/4/.gitignore index 95fdab6..392f136 100644 --- a/4/.gitignore +++ b/4/.gitignore @@ -1,3 +1,4 @@ *.o .old day4 +.vimspector.json diff --git a/4/.vimspector.json b/4/.vimspector.json deleted file mode 100644 index a7a9ea2..0000000 --- a/4/.vimspector.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "configurations": { - "vulkan_test": { - "adapter": "vscode-cpptools", - "configuration": { - "name": "day4", - "type": "asmdbg", - "request": "launch", - "externalConsole": true, - "logging": { - "engineLogging": true - }, - "stopOnEntry": true, - "stopAtEntry": true, - "debugOptions": [], - "MIMode": "gdb", - "cwd": "~/Sonstiges/AdventOfCode/4", - "program": "~/Sonstiges/AdventOfCode/4/day4" - } - } - } -} diff --git a/4/README.md b/4/README.md index 549c1d1..ac4e27f 100644 --- a/4/README.md +++ b/4/README.md @@ -14,7 +14,7 @@ It did a lot of things right, however it also did a lot of things wrong: - It told me the `read` syscall can read until a newline by passing `\n` as last arg So I had to fix all that. I tried to exclusively use the AI to get answers to my questions, however I did sometimes revert to the internet. -It was still a good starting point and provided lots of help.\n +It was still a good starting point and provided lots of help. At the end of the ~~evening~~ next morning I had successfully coded the task in x86-64 assembly! :smiley: I also gave it the exact same prompt again but said I wanted it in **C**.