mirror of
https://github.com/simh/simh.git
synced 2026-01-26 12:02:14 +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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user