Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 138 Bytes

File metadata and controls

7 lines (6 loc) · 138 Bytes

NASM

To compile an asm file:

nasm -f elf64 src/main.asm -o ./build/main.o && ld ./build/main.o -o ./build/bin && ./build/bin