e86_64 eeeeeeee, eeeeeee eeee `gcc -nostdlib -no-pie -o e.o e.s`

This commit is contained in:
supchppt 2018-12-08 16:53:16 +00:00
parent 8b86eb8925
commit 6f70e3b29a

15
e.s Normal file
View File

@ -0,0 +1,15 @@
.globl _start
.text
_start:
movq $1, %rax
movq $1, %rdi
movq $e, %rsi
movq $e_len, %rdx
syscall
jmp _start
.data
e:
.ascii "e"
e_len = . - e