section .data
    value1  dd  0
    value2  dd  0
    value3  dd  0
    value4  dd  0
    msg db "Hello world!", 0ah

section .text
    global _start

_start:
    obaka:
    mov rax, 1
    mov rdi, 1
    mov rsi, msg
    mov rdx, 13
    syscall


    add dword [value1],1
    cmp dword [value1],10
    JL obaka
    
    mov rax, 60
    mov rdi, 0
    syscall

Embed on website

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