mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 05:13:54 -06:00
Work around the lack of proper handling for self-modifying code.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2827 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f96f4c9d72
commit
34ae7b51f5
2 changed files with 30 additions and 2 deletions
|
@ -1001,6 +1001,16 @@ void op_jnz_T2 (void)
|
|||
RETURN();
|
||||
}
|
||||
|
||||
void op_flush_icache_range(void) {
|
||||
CALL_FROM_TB2(tlb_flush_page, env, T0 + T1);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
void op_flush_icache_all(void) {
|
||||
CALL_FROM_TB1(tb_flush, env);
|
||||
RETURN();
|
||||
}
|
||||
|
||||
/* CP0 functions */
|
||||
void op_mfc0_index (void)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue