Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 348 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 348 Bytes

= x86-64 Assembly

Encoded with .ascii.

as d.S -o d.o
ld d.o -o d.out
./d.out

Original code:

.globl _start
        .text
_start:
        mov $1, %rax
        mov $1, %rdi
        mov $msg, %rsi
        mov $10, %rdx
        syscall
        mov $60, %rax
        xor %rdi, %rdi
        syscall
msg:    .ascii "HelloWorld\0"