MicroVAX2: Cleanup build of rtvax1000 avoiding QDSS which isn't supported

This commit is contained in:
Mark Pizzolato 2019-04-12 06:11:06 -07:00
parent 06d78600b3
commit ad9cb1d42d
2 changed files with 7 additions and 1 deletions

View file

@ -1104,7 +1104,7 @@ else if (MATCH_CMD(gbuf, "VAXSTATIONGPX") == 0) {
strcpy (sim_name, "VAXStation II/GPX (KA630)"); strcpy (sim_name, "VAXStation II/GPX (KA630)");
reset_all (0); /* reset everything */ reset_all (0); /* reset everything */
#else #else
return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support"); return sim_messagef(SCPE_ARG, "Simulator built without Graphic Device Support\n");
#endif #endif
} }
else else

View file

@ -31,6 +31,8 @@
MP02083 - VCB02 Field Maintenance Print Set MP02083 - VCB02 Field Maintenance Print Set
*/ */
#if !defined(VAX_620)
#include "vax_defs.h" #include "vax_defs.h"
#include "sim_video.h" #include "sim_video.h"
#include "vax_gpx.h" #include "vax_gpx.h"
@ -1224,3 +1226,7 @@ const char *va_description (DEVICE *dptr)
{ {
return "VCB02 Colour Graphics Adapter"; return "VCB02 Colour Graphics Adapter";
} }
#else /* defined(VAX_620) */
static const char *dummy_declaration = "Something to compile";
#endif /* !defined(VAX_620) */