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:
@ -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));
|
||||
|
||||
|
Reference in New Issue
Block a user