We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0677a8 commit 769ef49Copy full SHA for 769ef49
1 file changed
cpu/ppc/ppcopcodes.cpp
@@ -973,13 +973,15 @@ void dppc_interpreter::ppc_mfspr(uint32_t opcode) {
973
ppc_state.gpr[reg_d] = ppc_state.spr[SPR::DEC_S] = val;
974
break;
975
}
976
+ case SPR::TBL_U:
977
case SPR::TBL_S: {
978
uint64_t tbr_value = calc_tbr_value();
979
ppc_state.gpr[reg_d] =
980
ppc_state.spr[TBL_S] = uint32_t(tbr_value);
981
ppc_state.spr[TBU_S] = uint32_t(tbr_value >> 32);
982
983
984
+ case SPR::TBU_U:
985
case SPR::TBU_S: {
986
987
0 commit comments