--- trunk/src/include/cpu_m68k.h 2007/10/08 16:18:51 14 +++ trunk/src/include/cpu_m68k.h 2007/10/08 16:19:11 18 @@ -28,7 +28,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_m68k.h,v 1.3 2005/08/28 20:16:24 debug Exp $ + * $Id: cpu_m68k.h,v 1.6 2005/10/27 14:01:15 debug Exp $ */ #include "misc.h" @@ -55,10 +55,10 @@ /* Translation cache struct for each physical page: */ struct m68k_tc_physpage { + struct m68k_instr_call ics[M68K_IC_ENTRIES_PER_PAGE + 1]; uint32_t next_ofs; /* or 0 for end of chain */ uint32_t physaddr; int flags; - struct m68k_instr_call ics[M68K_IC_ENTRIES_PER_PAGE + 1]; }; @@ -109,13 +109,15 @@ unsigned char *host_store[M68K_N_VPH_ENTRIES]; uint32_t phys_addr[M68K_N_VPH_ENTRIES]; struct m68k_tc_physpage *phys_page[M68K_N_VPH_ENTRIES]; + + uint32_t phystranslation[M68K_N_VPH_ENTRIES/32]; }; /* cpu_m68k.c: */ void m68k_update_translation_table(struct cpu *cpu, uint64_t vaddr_page, unsigned char *host_page, int writeflag, uint64_t paddr_page); -void m68k_invalidate_translation_caches_paddr(struct cpu *cpu, uint64_t, int); +void m68k_invalidate_translation_caches(struct cpu *cpu, uint64_t, int); void m68k_invalidate_code_translation(struct cpu *cpu, uint64_t, int); int m68k_memory_rw(struct cpu *cpu, struct memory *mem, uint64_t vaddr, unsigned char *data, size_t len, int writeflag, int cache_flags);