Adding disassemblers for the fpu instructions.

This commit is contained in:
Ben Vanik
2013-05-26 00:13:46 -07:00
parent 4073028188
commit ab762e0009
3 changed files with 201 additions and 67 deletions

View File

@@ -30,7 +30,7 @@ XEDISASMR(addx, 0x7C000214, XO )(InstrData& i, InstrDisasm& d) {
}
XEDISASMR(addcx, 0x7C000014, XO )(InstrData& i, InstrDisasm& d) {
d.Init("addcx", "Add Carrying",
d.Init("addc", "Add Carrying",
(i.XO.OE ? InstrDisasm::kOE : 0) | (i.XO.Rc ? InstrDisasm::kRc : 0) |
InstrDisasm::kCA);
d.AddRegOperand(InstrRegister::kGPR, i.XO.RT, InstrRegister::kWrite);