[org 0x6000] [bits 32] _start: push ebp mov ebp, esp ; Syscall #1 = write mov eax, 1 ; File descriptor = stdout mov edi, 0 ; ESI = buffer mov esi, buf int 0x80 jmp $ buf: db "Andew skibidi pomni", 0