mirror of
https://github.com/simh/simh.git
synced 2026-01-26 12:02:14 +00:00
More General cleanup migrate to using sim_printf vs separate calls to printf and fprintf(sim_log).
This commit is contained in:
@@ -756,7 +756,7 @@ static int32 normtab[7] = { 1, 2, 4, 8, 16, 32, 63 };
|
||||
extern a10 pager_PC;
|
||||
|
||||
if (a->fhi & FP_UCRY) { /* carry set? */
|
||||
printf ("%%PDP-10 FP: carry bit set at normalization, PC = %o\n", pager_PC);
|
||||
sim_printf ("%%PDP-10 FP: carry bit set at normalization, PC = %o\n", pager_PC);
|
||||
a->flo = (a->flo >> 1) | ((a->fhi & 1) << 63); /* try to recover */
|
||||
a->fhi = a->fhi >> 1; /* but root cause */
|
||||
a->exp = a->exp + 1; /* should be fixed! */
|
||||
|
||||
Reference in New Issue
Block a user