RTVAX1000: Make sure that rtvax1000 doesn't contain any parts of the VCB01 board which was never supported.

This fix makes sure that builds are clean when SDLlib is available at compile time for this system.
This commit is contained in:
Mark Pizzolato 2014-09-20 18:50:39 -07:00
parent 7154ca1fe1
commit 0b89e63d41
4 changed files with 14 additions and 0 deletions

View file

@ -756,7 +756,9 @@ struct reglink regtable[] = {
{ ROMBASE, ROMBASE+ROMSIZE+ROMSIZE, &rom_rd, NULL }, { ROMBASE, ROMBASE+ROMSIZE+ROMSIZE, &rom_rd, NULL },
{ NVRBASE, NVRBASE+NVRASIZE, &nvr_rd, &nvr_wr }, { NVRBASE, NVRBASE+NVRASIZE, &nvr_rd, &nvr_wr },
{ KABASE, KABASE+KASIZE, &ka_rd, &ka_wr }, { KABASE, KABASE+KASIZE, &ka_rd, &ka_wr },
#if !defined(VAX_620)
{ QVMBASE, QVMBASE+QVMSIZE, &vc_mem_rd, &vc_mem_wr }, { QVMBASE, QVMBASE+QVMSIZE, &vc_mem_rd, &vc_mem_wr },
#endif
{ QBMBASE, QBMBASE+QBMSIZE, &qbmem_rd, &qbmem_wr }, { QBMBASE, QBMBASE+QBMSIZE, &qbmem_rd, &qbmem_wr },
{ 0, 0, NULL, NULL } { 0, 0, NULL, NULL }
}; };

View file

@ -28,6 +28,8 @@
11-Jun-2013 MB First version 11-Jun-2013 MB First version
*/ */
#if !defined(VAX_620)
#include "vax_defs.h" #include "vax_defs.h"
#include "sim_video.h" #include "sim_video.h"
@ -826,3 +828,5 @@ switch (mode) {
break; break;
} }
} }
#endif /* !VAX_620 */

View file

@ -31,6 +31,8 @@
11-Jun-2013 MB First version 11-Jun-2013 MB First version
*/ */
#if !defined(VAX_620)
#include "vax_defs.h" #include "vax_defs.h"
#include "sim_video.h" #include "sim_video.h"
#include "vax_2681.h" #include "vax_2681.h"
@ -897,3 +899,5 @@ char *vc_description (DEVICE *dptr)
{ {
return "VCB01 Monochrome Graphics Adapter"; return "VCB01 Monochrome Graphics Adapter";
} }
#endif /* !VAX_620 */

View file

@ -29,6 +29,8 @@
11-Jun-2013 MB First version 11-Jun-2013 MB First version
*/ */
#if !defined(VAX_620)
#include "vax_defs.h" #include "vax_defs.h"
#include "sim_video.h" #include "sim_video.h"
@ -223,3 +225,5 @@ if (vs_state == VSXXX_IDLE) {
vs_sendupd (); vs_sendupd ();
} }
} }
#endif /* !VAX_620 */