section .data
    digit db "Hello friends chai pilo"

section .text
    global _start

_start:
    mov
    
    call exit

exit:
    mov rax, 60
    mov rdi, 0
    syscall

print:
    mov rax, 1
    mov rdi, 1
    mov rdx, 5
    syscall
    ret

Embed on website

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