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:
parent
7154ca1fe1
commit
0b89e63d41
4 changed files with 14 additions and 0 deletions
|
@ -756,7 +756,9 @@ struct reglink regtable[] = {
|
|||
{ ROMBASE, ROMBASE+ROMSIZE+ROMSIZE, &rom_rd, NULL },
|
||||
{ NVRBASE, NVRBASE+NVRASIZE, &nvr_rd, &nvr_wr },
|
||||
{ KABASE, KABASE+KASIZE, &ka_rd, &ka_wr },
|
||||
#if !defined(VAX_620)
|
||||
{ QVMBASE, QVMBASE+QVMSIZE, &vc_mem_rd, &vc_mem_wr },
|
||||
#endif
|
||||
{ QBMBASE, QBMBASE+QBMSIZE, &qbmem_rd, &qbmem_wr },
|
||||
{ 0, 0, NULL, NULL }
|
||||
};
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
11-Jun-2013 MB First version
|
||||
*/
|
||||
|
||||
#if !defined(VAX_620)
|
||||
|
||||
#include "vax_defs.h"
|
||||
#include "sim_video.h"
|
||||
|
||||
|
@ -826,3 +828,5 @@ switch (mode) {
|
|||
break;
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* !VAX_620 */
|
||||
|
|
|
@ -31,6 +31,8 @@
|
|||
11-Jun-2013 MB First version
|
||||
*/
|
||||
|
||||
#if !defined(VAX_620)
|
||||
|
||||
#include "vax_defs.h"
|
||||
#include "sim_video.h"
|
||||
#include "vax_2681.h"
|
||||
|
@ -897,3 +899,5 @@ char *vc_description (DEVICE *dptr)
|
|||
{
|
||||
return "VCB01 Monochrome Graphics Adapter";
|
||||
}
|
||||
|
||||
#endif /* !VAX_620 */
|
||||
|
|
|
@ -29,6 +29,8 @@
|
|||
11-Jun-2013 MB First version
|
||||
*/
|
||||
|
||||
#if !defined(VAX_620)
|
||||
|
||||
#include "vax_defs.h"
|
||||
#include "sim_video.h"
|
||||
|
||||
|
@ -223,3 +225,5 @@ if (vs_state == VSXXX_IDLE) {
|
|||
vs_sendupd ();
|
||||
}
|
||||
}
|
||||
|
||||
#endif /* !VAX_620 */
|
||||
|
|
Loading…
Add table
Reference in a new issue