global main

main:
mov eax, 1
mov ebx, 2
add eax, ebx
ret
nasm -f elf nmb.asm -o nmb.o
gcc -m32 nmb.o -o nmb
./nmb ; echo $?
3