diff options
author | 2023-04-11 21:26:26 -0400 | |
---|---|---|
committer | 2023-04-11 21:29:29 -0400 | |
commit | c3c625c8f378ca1deb81524f62c94dd8d4b065e1 (patch) | |
tree | 301ea8902dc33c5074c88ebc6866403968309220 /scripts/src/machine.lua | |
parent | f2ce9a832c891d574549d7b449a8999b3bedf989 (diff) |
Add device emulation of Dallas DS2430A 1-Wire EEPROM
- crazyfgt, lastfght, all games in subsino2.cpp: Hook up DS2430A device, add handcrafted EEPROM data to satisfy serial protection checks and remove ROM patches that forced them to pass
- crazyfgt: Hook up coin counter
- queenbeei, queenbeesa, qbeebing, treamary: Add RTE-to-RTS ROM patches that were missing
- treamary: Change configuration to one that allows booting into title screen rather than getting stuck on initial tests
Diffstat (limited to 'scripts/src/machine.lua')
-rw-r--r-- | scripts/src/machine.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/src/machine.lua b/scripts/src/machine.lua index 9ae0f30f936..d79cf1f0ee3 100644 --- a/scripts/src/machine.lua +++ b/scripts/src/machine.lua @@ -1289,6 +1289,18 @@ end --------------------------------------------------- -- +--@src/devices/machine/ds2430a.h,MACHINES["DS2430A"] = true +--------------------------------------------------- + +if (MACHINES["DS2430A"]~=null) then + files { + MAME_DIR .. "src/devices/machine/ds2430a.cpp", + MAME_DIR .. "src/devices/machine/ds2430a.h", + } +end + +--------------------------------------------------- +-- --@src/devices/machine/ds6417.h,MACHINES["DS6417"] = true --------------------------------------------------- |