compile to 32-bit elf file

nasm -f elf -o a.o a.asm

gcc -c -m32 -o b.o b.c

ld -s -m elf_i386 -Ttext 0x30400 -o b.bin b.o a.o

原文地址:https://www.cnblogs.com/tanghuimin0713/p/7182078.html