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

Added CmpRm32R32Handler for CMP r/m32, r32 instruction (0x39) with tests

This commit is contained in:
bird_egop
2025-04-13 01:34:56 +03:00
parent 28ba47bfab
commit 52841237c1
3 changed files with 222 additions and 0 deletions

View File

@ -209,6 +209,7 @@ public class InstructionHandlerFactory
{
// Add Cmp handlers
_handlers.Add(new CmpR32Rm32Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new CmpRm32R32Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new CmpImmWithRm8Handler(_codeBuffer, _decoder, _length));
_handlers.Add(new CmpAlImmHandler(_codeBuffer, _decoder, _length));