summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-04-28 20:24:51 +0200
committer hap <happppp@users.noreply.github.com>2021-04-28 20:25:08 +0200
commit9be4e35c5d72676d5eadf90c206f21da2e38d7aa (patch)
tree06706912472f028c0f4cecfdf9338556b0ff1ae7
parent082803db49a6aba819aac4f3f38eb5f0507e9d06 (diff)
slc1: fix led output
-rw-r--r--src/mame/drivers/slc1.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/slc1.cpp b/src/mame/drivers/slc1.cpp
index c64f82d4efe..e00c7029933 100644
--- a/src/mame/drivers/slc1.cpp
+++ b/src/mame/drivers/slc1.cpp
@@ -51,7 +51,7 @@ Test Paste:
TODO:
- Pasting doesn't work, probably too slow.
- The handwritten schematics and prototype by Dr.Scheuschner show 4 extra
- keys (R, MEM, N, Y), but they aren't in the final version.
+ keys (R, MEM, N, Y) and 8 7segs, but they aren't in the final version.
***************************************************************************/
@@ -78,7 +78,7 @@ public:
, m_speaker(*this, "speaker")
, m_inputs(*this, "IN.%u", 0U)
, m_display(*this, "display")
- , m_busyled(*this, "busyled")
+ , m_busyled(*this, "busy_led")
{ }
void slc1(machine_config &config);