1 2 3 4 5 6 7 8 9 10 11 12 13 14
bits 32 global _entry section .text _entry: mov eax, 0x5 mov ebx, hello int 0x30 int 0x38 section .data hello db "Hello, world!", 0x0a, 0