mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-12-09 15:21:20 +04:00
Refactor SUB handlers
This commit is contained in:
@@ -215,6 +215,15 @@ public class InstructionDecoder
|
||||
return _prefixDecoder.HasRepPrefix();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Checks if the instruction has an operand size override prefix (0x66)
|
||||
/// </summary>
|
||||
/// <returns>True if the instruction has an operand size override prefix</returns>
|
||||
public bool HasOperandSizeOverridePrefix()
|
||||
{
|
||||
return _prefixDecoder.HasOperandSizePrefix();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Reads a byte from the buffer and advances the position
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user