PDP8: Revised fix for Binary loader can't read multiple section tapes (#74) to make reading all sections optional based on the -A switch (from Dave Gesswein)
This commit is contained in:
parent
9068ea0e8e
commit
519f7f2c03
2 changed files with 9 additions and 7 deletions
|
@ -216,6 +216,8 @@ for (;;) {
|
||||||
printf ("%d sections sucessfully read\n\r", sections_read);
|
printf ("%d sections sucessfully read\n\r", sections_read);
|
||||||
return SCPE_CSUM;
|
return SCPE_CSUM;
|
||||||
}
|
}
|
||||||
|
if (!(sim_switches & SWMASK ('A'))) /* Load all sections? */
|
||||||
|
return SCPE_OK;
|
||||||
sections_read++;
|
sections_read++;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
BIN
doc/pdp8_doc.doc
BIN
doc/pdp8_doc.doc
Binary file not shown.
Loading…
Add table
Reference in a new issue