diff options
| author | 2026-03-30 18:37:59 +0100 | |
|---|---|---|
| committer | 2026-03-30 19:37:59 +0200 | |
| commit | 76a7bdf9f451ebf117d5a13b2365645a5d910e18 (patch) | |
| tree | 689bec6cffe932bb722655cca8b27d1aff325ec8 /scripts/src | |
| parent | 49f29790a37ece6aaaeb9f50463f1a040500b21b (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/src')
| -rw-r--r-- | scripts/src/machine.lua | 13 |
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 --------------------------------------------------- |
