%include "util.asm"

section .data
    hello db "Hello, World!", 0xa
    length equ $ - hello

section .text
global _start
_start:
    mov rax, sys_write
    mov rdi, 1 ; stdout
    mov rsi, hello
    mov rdx, length
    syscall
    jmp ok_exit