aboutsummaryrefslogtreecommitdiff
path: root/shellcode/simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'shellcode/simple.c')
-rw-r--r--shellcode/simple.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/shellcode/simple.c b/shellcode/simple.c
deleted file mode 100644
index bf2bf43..0000000
--- a/shellcode/simple.c
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
- * gcc -c -Wall -fpic -Os shellcode.c -o shellcode.o
- * ld -N -Ttext 0x0 -e _start -Map shellcode.map shellcode.o -o shellcode
- * objcopy -R .note -R .comment -S -O binary shellcode shellcode.bin
- */
-
-int _start(void) {
- while (1) {
- }
- return (0);
-}