nasm -f elf -o a.o a.asmasm
gcc -c -m32 -o b.o b.cgcc
ld -s -m elf_i386 -Ttext 0x30400 -o b.bin b.o a.ogc