1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 11:46:37 +00:00

GRI, PDP1, S3, SDS: Forwardport of Bob Supnik's merge from the master branch (change to sim_printf)

This commit is contained in:
Mark Pizzolato
2015-04-03 19:53:39 -07:00
parent fb3c5327b7
commit f2ca388f9c
14 changed files with 24 additions and 20 deletions

View File

@@ -264,7 +264,7 @@ int32 crd (int32 op, int32 m, int32 n, int32 data)
default:
break;
}
printf (">>CRD non-existent function %d\n", op);
sim_printf (">>CRD non-existent function %d\n", op);
return SCPE_OK;
}

View File

@@ -609,12 +609,12 @@ if (opaddr == 0xf0) { /* Is it command format?
if (qbyte & 0x01) display[2][3] = '|' ;
if (rbyte & 0x01) display[2][7] = '|' ;
/* Print display segment array */
printf("\n\r");
sim_printf("\n");
for (i = 0; i < 3; i++) {
for (j = 0; j < 9; j++) {
printf ("%c", display[i][j]);
sim_printf ("%c", display[i][j]);
}
printf ("\n\r");
sim_printf ("\n");
}
reason = STOP_HALT;
break;

View File

@@ -610,7 +610,7 @@ int32 dsk (int32 disk, int32 op, int32 m, int32 n, int32 data)
default:
break;
}
printf (">>DSK%d non-existent function %d\n", disk, op);
sim_printf (">>DSK%d non-existent function %d\n", disk, op);
return SCPE_OK;
}

View File

@@ -203,7 +203,7 @@ int32 lpt (int32 op, int32 m, int32 n, int32 data)
default:
break;
}
printf (">>LPT non-existent function %d\n", op);
sim_printf (">>LPT non-existent function %d\n", op);
return SCPE_OK;
}

View File

@@ -231,7 +231,7 @@ int32 pkb (int32 op, int32 m, int32 n, int32 data)
default:
break;
}
printf (">>PKB non-existent function %d\n", op);
sim_printf (">>PKB non-existent function %d\n", op);
return SCPE_OK;
}