Move the Tandy PSG ISA clones to the Dev branch

This commit is contained in:
Alexander Babikov
2022-02-14 05:10:50 +05:00
parent c1b071bee5
commit 4a752c05a5
7 changed files with 33 additions and 2 deletions

View File

@@ -63,6 +63,9 @@ ifeq ($(DEV_BUILD), y)
ifndef VGAWONDER
VGAWONDER := y
endif
ifndef TANDY_ISA
TANDY_ISA := y
endif
ifndef VNC
VNC := y
endif
@@ -121,6 +124,9 @@ else
ifndef VGAWONDER
VGAWONDER := n
endif
ifndef TANDY_ISA
TANDY_ISA := n
endif
ifndef VNC
VNC := n
endif
@@ -456,6 +462,10 @@ OPTS += -DUSE_SIO_DETECT
DEVBROBJ += sio_detect.o
endif
ifeq ($(TANDY_ISA), y)
OPTS += -DUSE_TANDY_ISA
endif
ifeq ($(VGAWONDER), y)
OPTS += -DUSE_VGAWONDER
endif