section .data
    msg: db "Hello, @Kernelzera!", 10
section .text 
    global _start

%MACRO printMsg 2 
    mov rax, 1 
    mov rdi, 1 
    mov rsi, %1 ; endereço da string
    mov rdx, %2 ; tamanho da string em bytes
    syscall
    mov rax, 60   
    mov rdi, 0   
    syscall
%ENDMACRO   

_start:  
printMsg msg, 20

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: