diff options
Diffstat (limited to 'sanctuary.s')
| -rw-r--r-- | sanctuary.s | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sanctuary.s b/sanctuary.s new file mode 100644 index 0000000..ad8720f --- /dev/null +++ b/sanctuary.s @@ -0,0 +1,13 @@ +; sanctuary + +section .bss + +resq 4091 +wstk: resq 1 + +section .text +global _start +_start: + mov rdi, 0 + mov rax, 60 + syscall |
