section .data
    msg db "Hello world!", 0ah
;           123456789012
    ciao db "Ciao", 0ah
section .text
    global _start

_start:
    mov rax, 1 ; 1 vuol dire che scrivi
    mov rdi, 1 ; su quale file (1 è lo schermo)
    mov rsi, ciao
    mov rdx, 5
    syscall

    mov bl, [ciao]
    add bl, 32
    mov [ciao], bl

    mov rax, 1
    mov rdi, 1
    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: