summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/cdp1861.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/cdp1861.cpp')
-rw-r--r--src/devices/video/cdp1861.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/cdp1861.cpp b/src/devices/video/cdp1861.cpp
index dfe71100411..6a79087990d 100644
--- a/src/devices/video/cdp1861.cpp
+++ b/src/devices/video/cdp1861.cpp
@@ -244,7 +244,7 @@ void cdp1861_device::device_timer(emu_timer &timer, device_timer_id id, int para
// dma_w -
//-------------------------------------------------
-WRITE8_MEMBER( cdp1861_device::dma_w )
+void cdp1861_device::dma_w(uint8_t data)
{
int sx = screen().hpos() + 4;
int y = screen().vpos();
@@ -263,7 +263,7 @@ WRITE8_MEMBER( cdp1861_device::dma_w )
// disp_on_w -
//-------------------------------------------------
-WRITE_LINE_MEMBER( cdp1861_device::disp_on_w )
+void cdp1861_device::disp_on_w(int state)
{
if (!m_dispon && state) m_disp = 1;
@@ -275,7 +275,7 @@ WRITE_LINE_MEMBER( cdp1861_device::disp_on_w )
// disp_off_w -
//-------------------------------------------------
-WRITE_LINE_MEMBER( cdp1861_device::disp_off_w )
+void cdp1861_device::disp_off_w(int state)
{
if (!m_dispon && !m_dispoff && state) m_disp = 0;