mirror of
https://github.com/mii443/qemu.git
synced 2025-08-29 02:19:37 +00: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:
@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user