From 6f70e3b29a2c53fa9b06e28e8bc25bcae0ba88cb Mon Sep 17 00:00:00 2001 From: supchppt Date: Sat, 8 Dec 2018 16:53:16 +0000 Subject: [PATCH] e86_64 eeeeeeee, eeeeeee eeee `gcc -nostdlib -no-pie -o e.o e.s` --- e.s | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 e.s diff --git a/e.s b/e.s new file mode 100644 index 0000000..c10d476 --- /dev/null +++ b/e.s @@ -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