diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-22 02:59:19 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-22 02:59:19 -0400 |
commit | cf3b1238d3ebdf6184a9977ee6e0d3057313444c (patch) | |
tree | 63e0e85528410bd643f6fe17ead02611a510176e /usr.bin/oemu/include | |
parent | 8b7558a31bd06d815b138661be0af543cd596ec5 (diff) |
oemu: cpu: Add CPU register dump
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/oemu/include')
-rw-r--r-- | usr.bin/oemu/include/oemu/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/oemu/include/oemu/cpu.h b/usr.bin/oemu/include/oemu/cpu.h index df4cc80..78b92da 100644 --- a/usr.bin/oemu/include/oemu/cpu.h +++ b/usr.bin/oemu/include/oemu/cpu.h @@ -63,6 +63,7 @@ struct oemu_cpu { struct cpu_regs regs; }; +void cpu_regdump(struct oemu_cpu *cpu); void cpu_reset(struct oemu_cpu *cpu); void cpu_kick(struct oemu_cpu *cpu, struct sysmem *mem); |