Revert "Disassembler added"

This reverts commit 37078ddfe1.
This commit is contained in:
Maxim Poliakovski
2020-02-04 14:20:10 +01:00
parent 09ac682dd2
commit fe57beb983
11 changed files with 50 additions and 889 deletions
+2 -2
View File
@@ -14,7 +14,7 @@ jmp_buf exc_env; /* Global exception environment. */
#endif
bb_kind = BB_end_kind::BB_EXCEPTION;
switch (exception_type) {
switch(exception_type) {
case Except_Type::EXC_SYSTEM_RESET:
ppc_state.ppc_spr[SPR::SRR0] = ppc_cur_instruction & 0xFFFFFFFC;
ppc_next_instruction_address = 0x0100;
@@ -90,4 +90,4 @@ jmp_buf exc_env; /* Global exception environment. */
}
longjmp(exc_env, 2); /* return to the main execution loop. */
}
}