1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-04 23:25:46 +00:00

Full VAX Simulators: Fix inverted instruction set test

This commit is contained in:
Mark Pizzolato
2019-05-01 04:20:51 -07:00
parent 4aa4f639e6
commit 6ae9b8025a
3 changed files with 10 additions and 8 deletions

View File

@@ -3829,7 +3829,7 @@ fprintf (st, "Implementing: ");
if ((cpu_instruction_set & FULL_INSTRUCTION_SET) == FULL_INSTRUCTION_SET) {
fprintf (st, "All standard VAX instructions");
#if defined(CMPM_VAX)
fprintf (st, "and Compatibility mode");
fprintf (st, " and Compatibility mode");
#endif
if (sim_switches & SWMASK ('V'))
cpu_show_instruction_group (st, cpu_instruction_set);