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

Simplified CmpImmWithRm32Handler and added AndImmWithRm32Handler

This commit is contained in:
bird_egop
2025-04-13 23:39:57 +03:00
parent 8d1522b6cb
commit ec70b31058
3 changed files with 111 additions and 15 deletions

View File

@ -373,6 +373,7 @@ public class InstructionHandlerFactory
{
// Add AND handlers
_handlers.Add(new AndImmToRm8Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new AndImmWithRm32Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new AndImmToRm32Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new AndImmToRm32SignExtendedHandler(_codeBuffer, _decoder, _length));