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

05-26 09:51