# Build steps ## Assembling Assembling with NASM ```bash nasm -g -f elf64 ``` - g = include debug info - f = file format (elf64 -> x64) ## Linking ```bash ld -o # Default gcc -o # When using C library functions ```