section .text global _start _start: mov eax, ecx push rdx mov eax, 1 mov edi, hello_world mov esi, 14 int 42h nop section .rodata hello_world: db 'Hello, world!', 0xa, 0 section .bss array: resb 10