Quick actions

cmd+k|ctrl+k

Navigation

Languages

Socrate

Snippet info

Language

Assembly

Visibility

public

Author

manuel.occ

Created

2016-05-01T22:47:45Z

Updated

2016-05-01T22:47:45Z

section .data
    msg db "Cos'è db?", 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