mirror of
https://github.com/simh/simh.git
synced 2026-02-15 04:06:59 +00:00
makefile: Add missing SDL support for VAXstation simulators.
- Minor naming corrections to VAX simulators
This commit is contained in:
committed by
Mark Pizzolato
parent
39ce971e2e
commit
7eee73770d
@@ -1829,7 +1829,7 @@ if ((cptr == NULL) || (!*cptr))
|
||||
cptr = get_glyph (cptr, gbuf, 0);
|
||||
if (MATCH_CMD(gbuf, "VAXSERVER") == 0) {
|
||||
sys_model = 0;
|
||||
strcpy (sim_name, "VAXServer 3900 (KA655)");
|
||||
strcpy (sim_name, "VAXserver 3900 (KA655)");
|
||||
}
|
||||
else if (MATCH_CMD(gbuf, "MICROVAX") == 0) {
|
||||
sys_model = 1;
|
||||
@@ -1843,7 +1843,7 @@ else if (MATCH_CMD(gbuf, "MICROVAX") == 0) {
|
||||
}
|
||||
else if (MATCH_CMD(gbuf, "VAXSTATION") == 0) {
|
||||
#if defined(USE_SIM_VIDEO) && defined(HAVE_LIBSDL)
|
||||
strcpy (sim_name, "VAXStation 3900 (KA655)");
|
||||
strcpy (sim_name, "VAXstation 3900 (KA655)");
|
||||
sys_model = 1;
|
||||
vc_dev.flags = vc_dev.flags & ~DEV_DIS; /* enable QVSS */
|
||||
lk_dev.flags = lk_dev.flags & ~DEV_DIS; /* enable keyboard */
|
||||
@@ -1860,7 +1860,7 @@ return SCPE_OK;
|
||||
|
||||
t_stat cpu_print_model (FILE *st)
|
||||
{
|
||||
fprintf (st, "%s 3900 (KA655)", (sys_model ? "MicroVAX" : "VAXServer"));
|
||||
fprintf (st, "%s 3900 (KA655)", (sys_model ? "MicroVAX" : "VAXserver"));
|
||||
return SCPE_OK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user