--- trunk/src/cpus/cpu_m68k.c 2007/10/08 16:20:18 27 +++ trunk/src/cpus/cpu_m68k.c 2007/10/08 16:20:26 28 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_m68k.c,v 1.10 2006/06/16 18:31:25 debug Exp $ + * $Id: cpu_m68k.c,v 1.12 2006/07/20 21:52:59 debug Exp $ * * Motorola 68K CPU emulation. */ @@ -64,6 +64,7 @@ if (strcasecmp(cpu_type_name, "68020") != 0) return 0; + cpu->run_instr = m68k_run_instr; cpu->memory_rw = m68k_memory_rw; cpu->update_translation_table = m68k_update_translation_table; cpu->invalidate_translation_caches = @@ -123,7 +124,7 @@ symbol = get_symbol_name(&cpu->machine->symbol_context, cpu->pc, &offset); - debug("cpu%i: pc = 0x%08x", x, (int)cpu->pc); + debug("cpu%i: pc = 0x%08"PRIx32, x, (uint32_t)cpu->pc); debug(" <%s>\n", symbol != NULL? symbol : " no symbol "); } }