created stdlib/debug.sl and moved int3 there as well as an improved version of debug thats now called dump

This commit is contained in:
IgorCielniak
2025-12-25 21:30:11 +01:00
parent ff72bc8207
commit f76ef276e9
2 changed files with 24 additions and 13 deletions

View File

@@ -1,16 +1,3 @@
: debug
for
puti cr
next
exit
;
# : int3 ( -- )
:asm int3 {
int3
}
;
# : c@ ( addr -- byte )
:asm c@ {
mov rax, [r12] ; get address from stack
@@ -304,6 +291,7 @@
mov rdi, [r12] ; addr
mov rax, 9 ; syscall: mmap
syscall
sub r12, 8
mov [r12], rax ; return addr
}
;
@@ -315,6 +303,7 @@
mov rdi, [r12] ; addr
mov rax, 11 ; syscall: munmap
syscall
sub r12, 8
mov [r12], rax ; return value
}
;