; nasm -f
asm
;ld -s -o
gcc
;gcc -Wall -nostdlib -s obj
file
BITS 32gc
GLOBAL _startdi
SECTION .texttar
_start:mov eax, 1
mov ebx, 42
int 0x80
nasm -f elf file
ld -s -o hello file.o
./hello
eax ebx ecx edx esi edi
nasm file
ndisasm -u file
objdump -d file