--- trunk/src/cpus/cpu_m68k.c 2007/10/08 16:18:51 14 +++ trunk/src/cpus/cpu_m68k.c 2007/10/08 16:19:23 20 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_m68k.c,v 1.3 2005/09/17 17:14:27 debug Exp $ + * $Id: cpu_m68k.c,v 1.5 2005/11/13 00:14:07 debug Exp $ * * Motorola 68K CPU emulation. */ @@ -66,8 +66,8 @@ cpu->memory_rw = m68k_memory_rw; cpu->update_translation_table = m68k_update_translation_table; - cpu->invalidate_translation_caches_paddr = - m68k_invalidate_translation_caches_paddr; + cpu->invalidate_translation_caches = + m68k_invalidate_translation_caches; cpu->invalidate_code_translation = m68k_invalidate_code_translation; cpu->is_32bit = 1; @@ -152,32 +152,6 @@ } -/* - * m68k_cpu_show_full_statistics(): - * - * Show detailed statistics on opcode usage on each cpu. - */ -void m68k_cpu_show_full_statistics(struct machine *m) -{ - fatal("m68k_cpu_show_full_statistics(): TODO\n"); -} - - -/* - * m68k_cpu_tlbdump(): - * - * Called from the debugger to dump the TLB in a readable format. - * x is the cpu number to dump, or -1 to dump all CPUs. - * - * If rawflag is nonzero, then the TLB contents isn't formated nicely, - * just dumped. - */ -void m68k_cpu_tlbdump(struct machine *m, int x, int rawflag) -{ - fatal("m68k_cpu_tlbdump(): TODO\n"); -} - - /* * m68k_cpu_interrupt(): */