diff options
| author | kitty <nepeta@canaglie.net> | 2026-01-21 16:17:18 +1100 |
|---|---|---|
| committer | kitty <nepeta@canaglie.net> | 2026-01-21 16:17:18 +1100 |
| commit | b42d8229a09103623f421937f217b8cc8609e06b (patch) | |
| tree | 0e3fdd180e142a6a7d4cca46b7da333b01980a04 /jefs.s | |
| parent | e270f024023e3f962df830ddeb058c96a1a5e900 (diff) | |
move to STC forth, note on COMPILE,
Diffstat (limited to 'jefs.s')
| -rw-r--r-- | jefs.s | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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 |
