This commit is contained in:
nub31
2025-01-30 18:09:12 +01:00
parent b6c80af6c4
commit 89ed0e58fd
6 changed files with 34 additions and 48 deletions

View File

@@ -2,6 +2,6 @@
nasm -g -felf64 out.asm -o out.o
nasm -g -felf64 ../input/core/str_len.asm -o str_len.o
nasm -g -felf64 ../input/core/arr_size.asm -o arr_size.o
nasm -g -felf64 ../input/core/print_int.asm -o print_int.o
nasm -g -felf64 ../input/core/itoa.asm -o itoa.o
ld -o out str_len.o arr_size.o print_int.o out.o
ld -o out str_len.o arr_size.o itoa.o out.o