summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/comx35/clm.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/comx35/clm.cpp')
-rw-r--r--src/devices/bus/comx35/clm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/comx35/clm.cpp b/src/devices/bus/comx35/clm.cpp
index 91bffedb413..745606875f0 100644
--- a/src/devices/bus/comx35/clm.cpp
+++ b/src/devices/bus/comx35/clm.cpp
@@ -229,7 +229,7 @@ uint8_t comx_clm_device::comx_mrd_r(offs_t offset, int *extrom)
}
else if (offset == 0xd801)
{
- data = m_crtc->register_r(machine().dummy_space(), 0);
+ data = m_crtc->register_r();
}
return data;
@@ -248,10 +248,10 @@ void comx_clm_device::comx_mwr_w(offs_t offset, uint8_t data)
}
else if (offset == 0xd800)
{
- m_crtc->address_w(machine().dummy_space(), 0, data);
+ m_crtc->address_w(data);
}
else if (offset == 0xd801)
{
- m_crtc->register_w(machine().dummy_space(), 0, data);
+ m_crtc->register_w(data);
}
}