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

refactor modrm decoder more

This commit is contained in:
bird_egop
2025-04-16 19:14:11 +03:00
parent a91d6af8fc
commit 193f9cd2d8
6 changed files with 16 additions and 68 deletions

View File

@@ -26,6 +26,6 @@ public class Register8Operand : Operand
/// </summary>
public override string ToString()
{
return ModRMDecoder.GetRegisterName(Register);
return RegisterMapper.GetRegisterName(Register);
}
}