--- trunk/src/cpus/cpu_alpha.c 2007/10/08 16:20:10 26 +++ trunk/src/cpus/cpu_alpha.c 2007/10/08 16:20:26 28 @@ -25,7 +25,7 @@ * SUCH DAMAGE. * * - * $Id: cpu_alpha.c,v 1.17 2006/06/24 21:47:23 debug Exp $ + * $Id: cpu_alpha.c,v 1.19 2006/07/20 21:52:59 debug Exp $ * * Alpha CPU emulation. * @@ -78,6 +78,7 @@ return 0; cpu->memory_rw = alpha_memory_rw; + cpu->run_instr = alpha_run_instr; cpu->translate_v2p = alpha_translate_v2p; cpu->update_translation_table = alpha_update_translation_table; cpu->invalidate_translation_caches = @@ -119,7 +120,7 @@ i = 0; while (tdefs[i].name != NULL) { debug("%s", tdefs[i].name); - for (j=16 - strlen(tdefs[i].name); j>0; j--) + for (j=13 - strlen(tdefs[i].name); j>0; j--) debug(" "); i++; if ((i % 4) == 0 || tdefs[i].name == NULL)