1
0
mirror of https://github.com/rcornwell/sims.git synced 2026-03-10 04:24:44 +00:00

KA10: Reversed attach fixes, defualt interval setup.

This commit is contained in:
Richard Cornwell
2020-03-25 22:28:43 -04:00
parent cbfaa373a4
commit c3ceb57063
3 changed files with 1 additions and 2 deletions

View File

@@ -10108,6 +10108,7 @@ for(i=0; i < 128; dev_irq[i++] = 0);
sim_brk_types = SWMASK('E') | SWMASK('W') | SWMASK('R');
sim_brk_dflt = SWMASK ('E');
sim_clock_precalibrate_commands = pdp10_clock_precalibrate_commands;
sim_vm_initial_ips = 4 * SIM_INITIAL_IPS;
sim_rtcn_init_unit (&cpu_unit[0], cpu_unit[0].wait, TMR_RTC);
sim_activate(&cpu_unit[0], 10000);
#if MPX_DEV

View File

@@ -1182,7 +1182,6 @@ t_stat dt_attach (UNIT *uptr, CONST char *cptr)
sim_printf ("16b format");
else sim_printf ("18b/36b format");
sim_printf (", buffering file in memory\n");
(void)sim_fseek (uptr->fileref, 0, SEEK_SET); /* start at the beginning of file */
uptr->io_flush = dt_flush;
if (uptr->flags & UNIT_8FMT) { /* 12b? */
for (ba = 0; ba < uptr->capac; ) { /* loop thru file */

View File

@@ -1194,7 +1194,6 @@ dtc_attach (UNIT *uptr, CONST char *cptr)
sim_printf ("16b format");
else sim_printf ("18b/36b format");
sim_printf (", buffering file in memory\n");
(void)sim_fseek (uptr->fileref, 0, SEEK_SET); /* start at the beginning of file */
uptr->WRITTEN = 0;
uptr->io_flush = dtc_flush;
if (uptr->flags & UNIT_8FMT) { /* 12b? */