summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
author MetalliC <0vetal0@gmail.com>2020-09-17 12:22:03 +0300
committer MetalliC <0vetal0@gmail.com>2020-09-17 12:22:03 +0300
commitbd89e921a3d4e0d82b995a8bb5af99b10fe6f085 (patch)
treec526c5f8646d9df847c1a3c2e421b3076476431b /src
parent9a0c63f673d1e6b91e8abbf6e54729aad7e439e9 (diff)
fix build
Diffstat (limited to 'src')
-rw-r--r--src/mame/drivers/apple3.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/apple3.cpp b/src/mame/drivers/apple3.cpp
index 3d487b4ed1b..c38c1939b74 100644
--- a/src/mame/drivers/apple3.cpp
+++ b/src/mame/drivers/apple3.cpp
@@ -103,7 +103,7 @@ void apple3_state::apple3(machine_config &config)
m_a2bus->set_space(m_maincpu, AS_PROGRAM);
m_a2bus->irq_w().set(FUNC(apple3_state::a2bus_irq_w));
m_a2bus->nmi_w().set(FUNC(apple3_state::a2bus_nmi_w));
- m_a2bus->inh_w().set(FUNC(apple3_state::a2bus_inh_w));
+ //m_a2bus->inh_w().set(FUNC(apple3_state::a2bus_inh_w));
m_a2bus->dma_w().set_inputline(m_maincpu, INPUT_LINE_HALT);
A2BUS_SLOT(config, "sl1", m_a2bus, apple3_cards, nullptr);
A2BUS_SLOT(config, "sl2", m_a2bus, apple3_cards, nullptr);