mirror of
https://github.com/open-simh/simh.git
synced 2026-05-02 14:30:22 +00:00
Add embedded boot code support to VAX 8600
Added RQB, RQC, RQD as boot devices for VAX 8600 Added generalized R5 boot flags option to all Unibus VAX systems
This commit is contained in:
@@ -525,8 +525,16 @@ if ((strncmp (regptr, "/R5:", 4) == 0) ||
|
||||
if (r != SCPE_OK)
|
||||
return r;
|
||||
}
|
||||
else if (*regptr != 0)
|
||||
return SCPE_ARG;
|
||||
else
|
||||
if (*regptr == '/') {
|
||||
r5v = (int32) get_uint (regptr + 1, 16, LMASK, &r);
|
||||
if (r != SCPE_OK)
|
||||
return r;
|
||||
}
|
||||
else {
|
||||
if (*regptr != 0)
|
||||
return SCPE_ARG;
|
||||
}
|
||||
for (i = 0; boot_tab[i].name != NULL; i++) {
|
||||
if (strcmp (dptr->name, boot_tab[i].name) == 0) {
|
||||
R[0] = boot_tab[i].code;
|
||||
|
||||
Reference in New Issue
Block a user