Quick actions

cmd+k|ctrl+k

Navigation

Languages

Expand Globally with One Union Solutions IOR

Snippet info

Language

Assembly

Visibility

public

Author

oneuninonsolution

Created

2026-07-01T13:08:39.149697Z

Updated

2026-07-01T13:09:28.994136Z

section .data
    msg db "Hello World!", 0ah

section .text
    global _start
_start:
    mov rax, 1
    mov rdi, 1
    mov rsi, msg
    mov rdx, 13
    syscall
    mov rax, 60
    mov rdi, 0
    syscall
INFO