SignalHandler Signal handling implementation in 32bit and 64bit asm Working To compile 32 bit asm, nasm -f elf32 32bit.asm ld -m elf_i386 -o <out_file> 32bit.o To compile 64 bit asm, nasm -f elf64 64bit.asm ld 64bit.o -o <output_file> References Link 1