Quick actions

cmd+k|ctrl+k

Navigation

Languages

Assembly Try

Snippet info

Language

Assembly

Visibility

public

Author

yuhang.zhao

Created

2015-07-05T13:48:49Z

Updated

2015-08-23T13:42:50Z

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