SECTION .data hello db 'hello world', 10 hellolen equ $-hello SECTION .text global start start: mov rax, 1 mov rdi, 1 mov rsi, qword hello mov rdx, hellolen syscall