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

@@ -475,6 +475,10 @@ void windows_emulator::setup_hooks()
this->log.print(color::pink, "Singlestep: 0x%" PRIx64 "\n", rip);
dispatch_single_step(this->emu(), this->process);
return;
case 3:
this->log.print(color::pink, "Breakpoint: 0x%" PRIx64 "\n", rip);
dispatch_breakpoint(this->emu(), this->process);
return;
case 6:
dispatch_illegal_instruction_violation(this->emu(), this->process);
return;