diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2011-01-26 02:07:50 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2011-01-26 14:30:24 +0100 |
commit | 9f97309a70f12df5f9104f1fcc280bceac7ea27e (patch) | |
tree | 0ec829fa4ca9778bf34bc1768d47f638c255d71d /target-sh4/cpu.h | |
parent | 7f0958161056ae4e4794dfeb30bc57e432d6e8e5 (diff) |
sh4: implement missing mmaped TLB write functions
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'target-sh4/cpu.h')
-rw-r--r-- | target-sh4/cpu.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/target-sh4/cpu.h b/target-sh4/cpu.h index 95df6d2a75..9eccb0cf8c 100644 --- a/target-sh4/cpu.h +++ b/target-sh4/cpu.h @@ -202,9 +202,13 @@ void sh4_cpu_list(FILE *f, fprintf_function cpu_fprintf); #if !defined(CONFIG_USER_ONLY) void cpu_sh4_invalidate_tlb(CPUSH4State *s); void cpu_sh4_write_mmaped_itlb_addr(CPUSH4State *s, target_phys_addr_t addr, - uint32_t mem_value); + uint32_t mem_value); +void cpu_sh4_write_mmaped_itlb_data(CPUSH4State *s, target_phys_addr_t addr, + uint32_t mem_value); void cpu_sh4_write_mmaped_utlb_addr(CPUSH4State *s, target_phys_addr_t addr, - uint32_t mem_value); + uint32_t mem_value); +void cpu_sh4_write_mmaped_utlb_data(CPUSH4State *s, target_phys_addr_t addr, + uint32_t mem_value); #endif int cpu_sh4_is_cached(CPUSH4State * env, target_ulong addr); |