0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-20 16:18:37 +03:00
This commit is contained in:
bird_egop
2025-04-15 02:32:14 +03:00
parent 3ea327064a
commit 49f1d7d221
5 changed files with 5 additions and 15 deletions

View File

@ -20,17 +20,7 @@ public abstract class MemoryOperand : Operand
Size = size;
SegmentOverride = segmentOverride;
}
/// <summary>
/// Gets the segment prefix string for display
/// </summary>
/// <returns>The segment prefix string</returns>
protected string GetSegmentPrefix()
{
// Format changed to match expected test output: "dword ptr es:[ebp+0x10]" instead of "es:dword ptr [ebp+0x10]"
return "";
}
/// <summary>
/// Gets the size prefix string for display (e.g., "byte ptr", "word ptr", "dword ptr")
/// </summary>