SiS 5571 implementation

A Socket 7 highly integrated chipset by SiS. Best performer for the Cyrix 6x86 CPUs of the time
This commit is contained in:
Panagiotis
2020-12-23 18:00:53 +02:00
committed by GitHub
parent f27e443bfa
commit 59bbfdd019
6 changed files with 714 additions and 1 deletions

View File

@@ -84,6 +84,9 @@ ifeq ($(DEV_BUILD), y)
ifndef M6117
M6117 := y
endif
ifndef SIS_5571
SIS_5571 := y
endif
ifndef VGAWONDER
VGAWONDER := y
endif
@@ -154,6 +157,9 @@ else
ifndef M6117
M6117 := n
endif
ifndef SIS_5571
SIS_5571 := y
endif
ifndef VGAWONDER
VGAWONDER := n
endif
@@ -552,6 +558,11 @@ OPTS += -DUSE_M6117
DEVBROBJ += ali6117.o
endif
ifeq ($(SIS_5571), y)
OPTS += -DUSE_SIS_5571
DEVBROBJ += sis_5571.o
endif
ifeq ($(VGAWONDER), y)
OPTS += -DUSE_VGAWONDER
endif