stv: moved video into video/saturn.cpp to remove possible circular dependency. (#8915)

This commit is contained in:
Robbbert 2021-12-01 22:36:51 +11:00
parent cdf9a94dc1
commit 0863066da5
7 changed files with 2211 additions and 2227 deletions

View File

@ -952,21 +952,6 @@ if (VIDEOS["SNES_PPU"]~=null) then
}
end
--------------------------------------------------
--
--@src/devices/video/stvvdp1.h,VIDEOS["STVVDP"] = true
--@src/devices/video/stvvdp2.h,VIDEOS["STVVDP"] = true
--------------------------------------------------
if (VIDEOS["STVVDP"]~=null) then
files {
MAME_DIR .. "src/devices/video/stvvdp1.cpp",
MAME_DIR .. "src/devices/video/stvvdp1.h",
MAME_DIR .. "src/devices/video/stvvdp2.cpp",
MAME_DIR .. "src/devices/video/stvvdp2.h",
}
end
--------------------------------------------------
--
--@src/devices/video/t6963c.h,VIDEOS["T6963C"] = true

View File

@ -377,7 +377,6 @@ VIDEOS["PWM_DISPLAY"] = true
--VIDEOS["SED1500"] = true
--VIDEOS["SED1520"] = true
VIDEOS["SNES_PPU"] = true
VIDEOS["STVVDP"] = true
--VIDEOS["T6963C"] = true
--VIDEOS["T6A04"] = true
VIDEOS["TLC34076"] = true
@ -3633,6 +3632,7 @@ files {
MAME_DIR .. "src/mame/includes/saturn.h",
MAME_DIR .. "src/mame/drivers/saturn.cpp",
MAME_DIR .. "src/mame/machine/saturn.cpp",
MAME_DIR .. "src/mame/video/saturn.cpp",
MAME_DIR .. "src/mame/machine/saturn_cdb.cpp",
MAME_DIR .. "src/mame/machine/saturn_cdb.h",
MAME_DIR .. "src/mame/includes/stv.h",

View File

@ -410,7 +410,6 @@ VIDEOS["SED1356"] = true
VIDEOS["SED1500"] = true
VIDEOS["SED1520"] = true
VIDEOS["SNES_PPU"] = true
VIDEOS["STVVDP"] = true
VIDEOS["T6963C"] = true
VIDEOS["T6A04"] = true
VIDEOS["TEA1002"] = true
@ -1626,6 +1625,7 @@ files {
MAME_DIR .. "src/mame/includes/saturn.h",
MAME_DIR .. "src/mame/drivers/saturn.cpp",
MAME_DIR .. "src/mame/machine/saturn.cpp",
MAME_DIR .. "src/mame/drivers/saturn.cpp",
MAME_DIR .. "src/mame/machine/saturn_cdb.cpp",
MAME_DIR .. "src/mame/machine/saturn_cdb.h",
}

File diff suppressed because it is too large Load Diff

View File

@ -1,2 +0,0 @@
// license:LGPL-2.1+
// copyright-holders:David Haywood, Angelo Salese, Olivier Galibert, Mariusz Wojcieszek, R. Belmont

View File

@ -1,2 +0,0 @@
// license:LGPL-2.1+
// copyright-holders:David Haywood, Angelo Salese, Olivier Galibert, Mariusz Wojcieszek, R. Belmont

File diff suppressed because it is too large Load Diff