summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ep64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ep64.cpp')
-rw-r--r--src/mame/drivers/ep64.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/ep64.cpp b/src/mame/drivers/ep64.cpp
index 8edc0be106b..9f1ecf7ec48 100644
--- a/src/mame/drivers/ep64.cpp
+++ b/src/mame/drivers/ep64.cpp
@@ -174,6 +174,7 @@ Notes: (All IC's shown)
#define CASSETTE1_TAG "cassette1"
#define CASSETTE2_TAG "cassette2"
#define SCREEN_TAG "screen"
+#define EP64_EXPANSION_BUS_TAG "exp"
class ep64_state : public driver_device
{
@@ -602,7 +603,8 @@ void ep64_state::ep64(machine_config &config)
// devices
EP64_EXPANSION_BUS_SLOT(config, m_exp, nullptr);
- m_exp->set_dave_tag(m_dave);
+ m_exp->set_program_space(m_dave, AS_PROGRAM);
+ m_exp->set_io_space(m_dave, AS_IO);
m_exp->irq_wr().set_inputline(m_maincpu, INPUT_LINE_IRQ0);
m_exp->nmi_wr().set_inputline(m_maincpu, INPUT_LINE_NMI);
m_exp->wait_wr().set_inputline(m_maincpu, Z80_INPUT_LINE_BOGUSWAIT);