mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Handle IBE on MIPS properly.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3416 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
932a79df5d
commit
647de6ca24
3 changed files with 12 additions and 1 deletions
|
@ -591,6 +591,14 @@ void tlb_fill (target_ulong addr, int is_write, int mmu_idx, void *retaddr)
|
|||
env = saved_env;
|
||||
}
|
||||
|
||||
void do_unassigned_access(target_phys_addr_t addr, int is_write, int is_exec,
|
||||
int unused)
|
||||
{
|
||||
if (is_exec)
|
||||
do_raise_exception(EXCP_IBE);
|
||||
else
|
||||
do_raise_exception(EXCP_DBE);
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Complex FPU operations which may need stack space. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue