--- trunk/src/cpus/cpu_i960.c 2007/10/08 16:20:18 27 +++ trunk/src/cpus/cpu_i960.c 2007/10/08 16:20:26 28 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_i960.c,v 1.9 2006/06/16 18:31:25 debug Exp $ + * $Id: cpu_i960.c,v 1.11 2006/07/20 21:52:59 debug Exp $ * * Intel i960 CPU emulation. */ @@ -60,6 +60,7 @@ if (strcasecmp(cpu_type_name, "i960") != 0) return 0; + cpu->run_instr = i960_run_instr; cpu->memory_rw = i960_memory_rw; cpu->update_translation_table = i960_update_translation_table; cpu->invalidate_translation_caches = @@ -119,7 +120,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 "); } }