Commit edfcbd99373f44d61980d731a9e176591a85f420
1 parent
612b477d
added cpu_get_phys_page_debug()
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@578 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
5 additions
and
0 deletions
target-sparc/translate.c
... | ... | @@ -841,3 +841,8 @@ void cpu_sparc_dump_state(CPUSPARCState * env, FILE * f, int flags) |
841 | 841 | GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'), |
842 | 842 | env->wim); |
843 | 843 | } |
844 | + | |
845 | +target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr) | |
846 | +{ | |
847 | + return addr; | |
848 | +} | ... | ... |