added cpu_get_phys_page_debug()

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@578 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
bellard 2004-01-24 15:11:05 +00:00
parent 612b477d48
commit edfcbd9937
1 changed files with 5 additions and 0 deletions

View File

@ -841,3 +841,8 @@ void cpu_sparc_dump_state(CPUSPARCState * env, FILE * f, int flags)
GET_FLAG(PSR_NEG, 'N'), GET_FLAG(PSR_CARRY, 'C'),
env->wim);
}
target_ulong cpu_get_phys_page_debug(CPUState *env, target_ulong addr)
{
return addr;
}