summaryrefslogtreecommitdiffstatshomepage
path: root/scripts
diff options
context:
space:
mode:
author Christian Brunschen <6741909+cbrunschen@users.noreply.github.com>2026-03-30 18:37:59 +0100
committer GitHub <noreply@github.com>2026-03-30 19:37:59 +0200
commit76a7bdf9f451ebf117d5a13b2365645a5d910e18 (patch)
tree689bec6cffe932bb722655cca8b27d1aff325ec8 /scripts
parent49f29790a37ece6aaaeb9f50463f1a040500b21b (diff)
vfxcart.cpp: add a timer to complete the write cycle. (#15155)
-vfx: [CBrunschen] * Added a timer to complete the write cycle. * X27C256 -> X28C256 * Added a generic implementation for Xicor X28 series EEPROMs, and use it in vfxcart. * Added license and copyright holder comments. * Improved some indentation, braces, and comments. * Improved comments documenting the different devices.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/src/machine.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua
index f8b328c5ab3..20476e7d3a8 100644
--- a/scripts/src/machine.lua
+++ b/scripts/src/machine.lua
@@ -4171,6 +4171,19 @@ end
---------------------------------------------------
--
+--@src/devices/machine/x28.h,MACHINES["X28"] = true
+---------------------------------------------------
+
+if MACHINES["X28"] then
+ files {
+ MAME_DIR .. "src/devices/machine/x28.cpp",
+ MAME_DIR .. "src/devices/machine/x28.ipp",
+ MAME_DIR .. "src/devices/machine/x28.h",
+ }
+end
+
+---------------------------------------------------
+--
--@src/devices/machine/x76f041.h,MACHINES["X76F041"] = true
---------------------------------------------------