section .data
    msg db 'I dit it! Yeah...', 0xa, 0xd
    len equ $ - msg

section .text
    global _start

_start:
    mov eax, 4
    mov ebx, 1
    mov ecx, msg
    mov edx, len
    
    int 0x80
    
    mov eax, 1
    mov ebx, 0
    
    int 0x80

Embed on website

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