1
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-12-10 08:01:21 +04:00

Fixed operand order in MOV instructions and updated tests to match disassembler output

This commit is contained in:
bird_egop
2025-04-13 03:56:09 +03:00
parent b2929c38e9
commit 611dce32e5
5 changed files with 16 additions and 57 deletions

View File

@@ -26,7 +26,7 @@ public class SegmentOverrideTests
// Assert
Assert.NotNull(instruction);
Assert.Equal("mov", instruction.Mnemonic);
Assert.Equal("esp, dword ptr fs:[0x00000000]", instruction.Operands);
Assert.Equal("dword ptr fs:[0x00000000], esp", instruction.Operands);
}
/// <summary>