Small fix

This commit is contained in:
Maurice Heumann
2025-04-07 22:01:33 +02:00
parent 0d9e03b673
commit 67d34b3988
6 changed files with 48 additions and 0 deletions

View File

@@ -196,3 +196,8 @@ void dispatch_single_step(x64_emulator& emu, const process_context& proc)
{
dispatch_exception(emu, proc, STATUS_SINGLE_STEP, {});
}
void dispatch_breakpoint(x64_emulator& emu, const process_context& proc)
{
dispatch_exception(emu, proc, STATUS_BREAKPOINT, {});
}