🚚 Moves from gnu assembler to netwide assembler

This commit is contained in:
Daniel Svitan
2025-05-07 20:38:17 +02:00
parent 5acba466b4
commit 0190a14bd8
2 changed files with 35 additions and 15 deletions

View File

@@ -2,6 +2,6 @@
gcc main.c -o a.out
gcc -c main.s -o b.o
nasm -f elf64 main.s -o b.o
ld b.o -o b.out
rm b.o