MIPS: Implement the SE mode version of rdhwr.

This commit is contained in:
Gabe Black
2009-12-31 15:30:51 -05:00
parent c70f3c93af
commit ecaa7070e6

View File

@@ -2477,7 +2477,13 @@ decode OPCODE_HI default Unknown::unknown() {
}
}
0x3: decode OP {
#if FULL_SYSTEM
0x0: FailUnimpl::rdhwr();
#else
0x0: decode RD {
29: BasicOp::rdhwr({{ Rt = TpValue; }});
}
#endif
}
}
}