summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author ajrhacker <ajrhacker@users.noreply.github.com>2020-11-26 22:28:10 -0500
committer GitHub <noreply@github.com>2020-11-26 22:28:10 -0500
commit5dc6a087d9901aafd1a0410c48ce19da2b624666 (patch)
tree1f74155e58fc720789d4b07d0b193fd94bd0f9d2
parent3bd0ccb3cb4062a31f08f6cd1580eb67b8555805 (diff)
parent318629910be30aac130d3fb5134b86cb1f428fdd (diff)
Merge pull request #7517 from clawgrip/patch-5
design.cpp: Add notes about coin selector
-rw-r--r--src/mame/drivers/design.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/mame/drivers/design.cpp b/src/mame/drivers/design.cpp
index 9040bfd5aa9..8ff32f91abb 100644
--- a/src/mame/drivers/design.cpp
+++ b/src/mame/drivers/design.cpp
@@ -14,7 +14,8 @@
- Rockwell 10937P-50 A8201-17 display controller
TODO:
- - The coin mech isn't emulated
+ - The coin mech isn't emulated. It's an Azkoyen L66S coin selector,
+ which uses a PIC16C76/PIC16F76 (undumped).
***************************************************************************/
@@ -285,11 +286,17 @@ void design6_state::design6(machine_config &config)
ROM_START( design6 )
ROM_REGION(0x8000, "maincpu", 0)
ROM_LOAD("1.bin", 0x0000, 0x8000, CRC(1155999c) SHA1(2896af89011c496f905ed0e57d7035a3b612c718))
+
+ ROM_REGION(0x4000, "coinsel", 0)
+ ROM_LOAD("pic16x76_l56s-l66s.bin", 0x0000, 0x4000, NO_DUMP)
ROM_END
ROM_START( designe )
ROM_REGION(0x8000, "maincpu", 0)
ROM_LOAD("designe.bin", 0x0000, 0x8000, CRC(693d40bd) SHA1(9596bbf9c367bc919393923460da15563d9447ca))
+
+ ROM_REGION(0x4000, "coinsel", 0)
+ ROM_LOAD("pic16x76_l56s-l66s.bin", 0x0000, 0x4000, NO_DUMP)
ROM_END