Compiling a Code

nasm -f elf32 -g -o filename.o filename.nasm
ld -o filename filename.o
in 64bit Architecture use -f elf64
Comments