We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7170f4 commit 130beabCopy full SHA for 130beab
1 file changed
cpu/ppc/ppcopcodes.cpp
@@ -2018,6 +2018,12 @@ void dppc_interpreter::ppc_tlbia(uint32_t opcode) {
2018
num_supervisor_instrs++;
2019
#endif
2020
/* placeholder */
2021
+ if (ppc_state.msr & MSR::PR) {
2022
+ ppc_exception_handler(Except_Type::EXC_PROGRAM, Exc_Cause::NOT_ALLOWED);
2023
+ return;
2024
+ }
2025
+
2026
+ LOG_F(ERROR, "tlbia needs to be implemented!");
2027
}
2028
2029
void dppc_interpreter::ppc_tlbld(uint32_t opcode) {
0 commit comments