Quick actions

cmd+k|ctrl+k

Navigation

Languages

siec

Snippet info

Language

Assembly

Visibility

public

Author

siec4seo

Created

2025-03-17T06:14:54.183345Z

Updated

2025-03-17T06:14:54.183345Z

section .data
    msg db "Hello SIEC!", 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