mirror of https://github.com/N64Recomp/N64Recomp
Add dmtc1 and dmfc1 functionality to the recompiler (#134)
* make osPiReadIo no longer ignored * remove added dmtc1/dmfc1 functionality * add dmtc1 and dmfc1 to recompiler
This commit is contained in:
parent
e76668356b
commit
6e7a5bdb2f
|
|
@ -9,6 +9,8 @@ namespace N64Recomp {
|
|||
{ InstrId::cpu_mflo, { UnaryOpType::None, Operand::Rd, Operand::Lo } },
|
||||
{ InstrId::cpu_mtc1, { UnaryOpType::None, Operand::FsU32L, Operand::Rt } },
|
||||
{ InstrId::cpu_mfc1, { UnaryOpType::ToInt32, Operand::Rt, Operand::FsU32L } },
|
||||
{ InstrId::cpu_dmtc1, { UnaryOpType::None, Operand::FsU64, Operand::Rt } },
|
||||
{ InstrId::cpu_dmfc1, { UnaryOpType::None, Operand::Rt, Operand::FsU64 } },
|
||||
// Float operations
|
||||
{ InstrId::cpu_mov_s, { UnaryOpType::None, Operand::Fd, Operand::Fs, true } },
|
||||
{ InstrId::cpu_mov_d, { UnaryOpType::None, Operand::FdDouble, Operand::FsDouble, true } },
|
||||
|
|
|
|||
Loading…
Reference in New Issue