mirror of
https://github.com/open-simh/simh.git
synced 2026-04-30 21:49:00 +00:00
3B2: LPT Device; MMU and SCSI fixes
This change adds support for printing to an attached text file via the Centronics port of a simulated PORTS feature card. A new device named "LPT" has been added. See "help lpt" for documentation. Additionally, there has been a fix to a bug in the SCSI tape boot implementation and a very minor bug fix to the Rev 3 MMU.
This commit is contained in:
@@ -846,9 +846,9 @@ t_stat cpu_show_cio(FILE *st, UNIT *uptr, int32 val, CONST void *desc)
|
||||
fprintf(st, "---------------------\n");
|
||||
for (slot = 0; slot < CIO_SLOTS; slot++) {
|
||||
if (cio[slot].populated) {
|
||||
fprintf(st, " %2d %s\n", slot, cio[slot].name);
|
||||
fprintf(st, " %2d %s\n", slot + 1, cio[slot].name);
|
||||
} else {
|
||||
fprintf(st, " %2d -\n", slot);
|
||||
fprintf(st, " %2d -\n", slot + 1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user