0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 16:18:37 +03:00

Added test for INT3 instruction handler

This commit is contained in:
bird_egop
2025-04-12 22:16:12 +03:00
parent 3ea408d088
commit 0cc03c2479
3 changed files with 77 additions and 0 deletions

View File

@ -45,6 +45,8 @@ public class InstructionHandlerFactory
RegisterGroup1Handlers();
// Register specific instruction handlers
_handlers.Add(new Int3Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new RetHandler(_codeBuffer, _decoder, _length));
_handlers.Add(new RetImmHandler(_codeBuffer, _decoder, _length));
_handlers.Add(new CallRel32Handler(_codeBuffer, _decoder, _length));