1
0
mirror of https://github.com/simh/simh.git synced 2026-01-11 23:52:58 +00:00

MicroVAX I: Cleanup magic boot support for both MicroVMS and VAX/VMS

This commit is contained in:
Mark Pizzolato 2023-07-09 21:45:38 -10:00
parent c739e6195a
commit 9cdfb0cae3
2 changed files with 3 additions and 1 deletions

View File

@ -118,6 +118,7 @@ All Simulator updates on Open SIMH will be present in this repository, and any c
- MicroVAX I/VAXStation I has been enhanced to dynamically look for its secondary bootstrap program (SYSBOOT.EXE) from both [SYSEXE]SYSBOOT.EXE and [SYS0.SYSEXE]SYSBOOT.EXE.
- PDP11 now has working support for RC and RF expandable platter based disk drives.
- Properly set asynchronous interrupt latency in all VAX simulators.
- MicroVAX I simulator boots from oldest MicroVMS media due to the addition of RQDX1 disk controller type.
### All relevant changes in the simh v3.12-3 release have been merged into this repo

View File

@ -531,13 +531,14 @@ if ((R[5] & 0x100) == 0) {
snprintf (cmd, sizeof (cmd), "\"Bootfile:\" SEND \"%s\r\";"
"CONTINUE", sysboot);
expect_cmd (1, cmd);
expect_cmd (1, "\"VAX/VMS\" "
expect_cmd (1, "-r \"MicroVMS|VAX\\/VMS\" "
"NOEXPECT \"Bootfile:\";"
"NOEXPECT \"%%BOOT-F-ERROR, Program image not found DUA\";"
"NOEXPECT \"%%BOOT-F-ERROR, None of the bootable devices contain a program image\";"
"NOEXPECT \"%%BOOT-F-ERROR, Boot device I/O error XQA\";"
"NOEXPECT \"%%BOOT-F-ERROR, No response from load server XQA\";"
"CONTINUE");
sim_switches &= ~SWMASK('R');
}
SP = PC = 512;
AP = 1;