mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
CRIS support in toplevel, by Edgar E. Iglesias.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3363 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
94cff60a02
commit
f1ccf90477
7 changed files with 143 additions and 2 deletions
4
exec.c
4
exec.c
|
|
@ -2066,6 +2066,8 @@ static uint32_t unassigned_mem_readb(void *opaque, target_phys_addr_t addr)
|
|||
#endif
|
||||
#ifdef TARGET_SPARC
|
||||
do_unassigned_access(addr, 0, 0, 0);
|
||||
#elif TARGET_CRIS
|
||||
do_unassigned_access(addr, 0, 0, 0);
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -2077,6 +2079,8 @@ static void unassigned_mem_writeb(void *opaque, target_phys_addr_t addr, uint32_
|
|||
#endif
|
||||
#ifdef TARGET_SPARC
|
||||
do_unassigned_access(addr, 1, 0, 0);
|
||||
#elif TARGET_CRIS
|
||||
do_unassigned_access(addr, 1, 0, 0);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue