mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-06-20 08:18:36 +03:00
implement shift and rotate handlers. Fix tests
This commit is contained in:
@ -5,13 +5,13 @@ using X86Disassembler.X86.Operands;
|
||||
/// <summary>
|
||||
/// Handler for INT instruction (0xCD)
|
||||
/// </summary>
|
||||
public class IntHandler : InstructionHandler
|
||||
public class IntImm8Handler : InstructionHandler
|
||||
{
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the IntHandler class
|
||||
/// </summary>
|
||||
/// <param name="decoder">The instruction decoder that owns this handler</param>
|
||||
public IntHandler(InstructionDecoder decoder)
|
||||
public IntImm8Handler(InstructionDecoder decoder)
|
||||
: base(decoder)
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user