section .data hello db "Hello, World!", 10 ; Declared bits with a new line term (10) section .text global _start _start: mov rax, 1 mov rdi, 1 mov rsi, hello mov rdx, 14 syscall mov rax, 60 mov rdi, 0 syscall