mirror of
https://github.com/sampletext32/ParkanPlayground.git
synced 2025-08-04 10:26:31 +03:00
fix float
This commit is contained in:
@@ -13,8 +13,9 @@ public class LoadStoreFloat64Handler : FloatingPointBaseHandler
|
||||
"fst",
|
||||
"fstp",
|
||||
"frstor",
|
||||
"??",
|
||||
"fnsave",
|
||||
"fnstsw"
|
||||
"fnstsw",
|
||||
];
|
||||
|
||||
/// <summary>
|
||||
|
@@ -126,6 +126,6 @@ public static class OpcodeMap
|
||||
/// <returns>The mnemonic</returns>
|
||||
public static string GetMnemonic(byte opcode)
|
||||
{
|
||||
return OneByteOpcodes[opcode];
|
||||
return "TODO UNKNOWN: " + OneByteOpcodes[opcode];
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user