; nasm -f elf test.o ; gcc test.o -o test ; ./test ; echo $? BITS 32 global main main: mov eax, 42 ret