diff options
author | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-09 18:45:55 +0000 |
---|---|---|
committer | aurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-09 18:45:55 +0000 |
commit | ea2b542a4c8fbf50a00c7b431b9fd2c0b832991f (patch) | |
tree | d98ed99a9cd142c3790daec8eedc1e36a4e88ec9 /target-sh4/op_helper.c | |
parent | 939ef5938fa15b996d3801fa53ef5be2f5cf3495 (diff) |
SH4 MMU improvements
(Shin-ichiro KAWASAKI)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4396 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sh4/op_helper.c')
-rw-r--r-- | target-sh4/op_helper.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target-sh4/op_helper.c b/target-sh4/op_helper.c index c1bc4e8942..bbc3030266 100644 --- a/target-sh4/op_helper.c +++ b/target-sh4/op_helper.c @@ -76,6 +76,16 @@ void tlb_fill(target_ulong addr, int is_write, int mmu_idx, void *retaddr) #endif +void helper_ldtlb(void) +{ +#ifdef CONFIG_USER_ONLY + /* XXXXX */ + assert(0); +#else + cpu_load_tlb(env); +#endif +} + void helper_addc_T0_T1(void) { uint32_t tmp0, tmp1; |