summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Paul-Arnold <98924583+Paul-Arnold@users.noreply.github.com>2022-08-18 14:41:08 +0100
committer GitHub <noreply@github.com>2022-08-18 23:41:08 +1000
commit0a18e664630af3aa977c93c0a8504939b68e3552 (patch)
tree0a98db52d8ef39642354acd3b9bb4410a6b83c88 /scripts
parent266b91834977036d6bd69106213b746d849a05a0 (diff)
misc/magicard.cpp: Added required devices and default NVRAM contents. (#9970)
* cpu/pic16c5x: Expose driven lines to I/O handlers in mask. * machine/ds1207.cpp: Added DS1207 Time Key device. * machine/msm6242.cpp: Fixed interrupt output pulse duration. * machine/scc66470.cpp: Added Philips SCC66470 Video and System controller device. Machines promoted to working ------------------------------- Puzzle Me! Lucky 7 (Impera) V04/91a Clones promoted to working ------------------------------- Magic Card Export 94 (V2.11a, set 3) Magic Card - Wien (Sicherheitsversion 1.2) unknown Poker 'TE06'
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/machine.lua23
1 files changed, 23 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index 6c564876d8b..0fb0e109de5 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -1181,6 +1181,18 @@ end
---------------------------------------------------
--
+--@src/devices/machine/ds1207.h,MACHINES["DS1207"] = true
+---------------------------------------------------
+
+if (MACHINES["DS1207"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/ds1207.cpp",
+ MAME_DIR .. "src/devices/machine/ds1207.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/ds1302.h,MACHINES["DS1302"] = true
---------------------------------------------------
@@ -3107,6 +3119,17 @@ end
---------------------------------------------------
--
+--@src/devices/machine/scc66470.h,MACHINES["SCC66470"] = true
+---------------------------------------------------
+if (MACHINES["SCC66470"]~=null) then
+ files {
+ MAME_DIR .. "src/devices/machine/scc66470.cpp",
+ MAME_DIR .. "src/devices/machine/scc66470.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/scc68070.h,MACHINES["SCC68070"] = true
---------------------------------------------------
if (MACHINES["SCC68070"]~=null) then