diff options
| author | kitty <nepeta@canaglie.net> | 2026-03-15 14:37:07 +1100 |
|---|---|---|
| committer | kitty <nepeta@canaglie.net> | 2026-03-15 14:37:07 +1100 |
| commit | 726c1087c1a52a1fb4799ea6130b10182ed2222a (patch) | |
| tree | 042a94061eec71ea4c91e9975f5dfc78cf47850e /sanctuary.s | |
| parent | b7674299e50c469b13d2f0eb8320a8dc1925b836 (diff) | |
template makefile and asm
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 |
