PDP11: fixed auto configure for RL and HK devices
This commit is contained in:
parent
c0bf9073d9
commit
59232fed53
2 changed files with 2 additions and 2 deletions
|
@ -1480,7 +1480,7 @@ if (hkxb == NULL)
|
||||||
hkxb = (uint16 *) calloc (HK_MAXFR, sizeof (uint16));
|
hkxb = (uint16 *) calloc (HK_MAXFR, sizeof (uint16));
|
||||||
if (hkxb == NULL)
|
if (hkxb == NULL)
|
||||||
return SCPE_MEM;
|
return SCPE_MEM;
|
||||||
return SCPE_OK;
|
return auto_config (0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Device attach */
|
/* Device attach */
|
||||||
|
|
|
@ -992,7 +992,7 @@ if (rlxb == NULL)
|
||||||
rlxb = (uint16 *) calloc (RL_MAXFR, sizeof (uint16));
|
rlxb = (uint16 *) calloc (RL_MAXFR, sizeof (uint16));
|
||||||
if (rlxb == NULL)
|
if (rlxb == NULL)
|
||||||
return SCPE_MEM;
|
return SCPE_MEM;
|
||||||
return SCPE_OK;
|
return auto_config (0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Attach routine */
|
/* Attach routine */
|
||||||
|
|
Loading…
Add table
Reference in a new issue