From b42d8229a09103623f421937f217b8cc8609e06b Mon Sep 17 00:00:00 2001 From: kitty Date: Wed, 21 Jan 2026 16:17:18 +1100 Subject: move to STC forth, note on COMPILE, --- jefs.s | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'jefs.s') diff --git a/jefs.s b/jefs.s index d698f13..eca2374 100644 --- a/jefs.s +++ b/jefs.s @@ -6,9 +6,17 @@ %assign __NR_brk 12 %assign __NR_exit 60 +section .bss +wstack_b: resq 2047 +wstack: resq 1 + section .text global _start _start: + ; init + mov r14, wstack + xor r15, r15 + mov rdi, 0 mov rax, __NR_exit syscall -- cgit v1.2.3