1 2 3 4 5 6 7 8 9 10 11 12 13
.global _start .extern main _start: call main mov %eax, %ebx mov $8, %eax int $0x80 l: nop nop nop nop jmp l