section .data
    globalVar1 db 0
    globalVar2 db 20
section .text
    global _start
_start:
    movzx rbx, byte[globalVar1]
    add rbx, [globalVar2]

    mov rax, 60
    mov rdi, 1
    syscall

Embed on website

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