This commit is contained in:
nub31
2025-01-29 21:39:55 +01:00
parent 39be4d823b
commit d685fe2209
12 changed files with 205 additions and 1 deletions

5
output/build.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/sh
nasm -g -felf64 out.asm -o out.o
nasm -g -felf64 ../input/core/strlen.asm -o strlen.o
ld -o out out.o strlen.o