1
0
mirror of https://github.com/deadw00d/AROS.git synced 2026-03-16 13:31:20 +00:00

Add function to move down via 32-bit stack frames

This commit is contained in:
deadwood
2026-01-12 16:55:59 +01:00
parent 1dff44a517
commit 235a411473

View File

@ -633,6 +633,11 @@ define inspectprev
f 0
end
define movedown
set $rip = *((int *)($rbp + 4))
set $rbp = *((int *)($rbp))
end
document semowner
Shows the owner of the given Exec Semaphore and the Wait Queue
end