%macro display 4
    mov rax,%1
    mov rdi,%2
    mov rsi,%3
    mov rdx,%4
    syscall
%endmacro

section .data
    m1 db "Hello World",10d,13d
    l1 equ $-m1

section .text
    global _start

_start:
    display 1,1,m1,l1

Embed on website

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