Section .text global _start _start: mov eax, 1 ; Syscall 1 - _exit mov ebx, 0 ; Exit status int 0x80 ; Switch to kernel mode