FINALLY, parsing done

This commit is contained in:
2024-12-01 16:43:57 +01:00
parent c2b35be668
commit ea1e7547b0
4 changed files with 512 additions and 0 deletions

5
2024-asm/01/build.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env bash
set -euxo pipefail
nasm -f elf64 -o main.o main.asm
ld -o main main.o