From 726c1087c1a52a1fb4799ea6130b10182ed2222a Mon Sep 17 00:00:00 2001 From: kitty Date: Sun, 15 Mar 2026 14:37:07 +1100 Subject: template makefile and asm --- sanctuary.s | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 sanctuary.s (limited to 'sanctuary.s') 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 -- cgit v1.2.3