summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/cdp1861.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/cdp1861.h')
-rw-r--r--src/devices/video/cdp1861.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/cdp1861.h b/src/devices/video/cdp1861.h
index 77f350d5afe..cf247d19e3e 100644
--- a/src/devices/video/cdp1861.h
+++ b/src/devices/video/cdp1861.h
@@ -68,9 +68,9 @@ public:
auto dma_out_cb() { return m_write_dma_out.bind(); }
auto efx_cb() { return m_write_efx.bind(); }
- DECLARE_WRITE8_MEMBER( dma_w );
- DECLARE_WRITE_LINE_MEMBER( disp_on_w );
- DECLARE_WRITE_LINE_MEMBER( disp_off_w );
+ void dma_w(uint8_t data);
+ void disp_on_w(int state);
+ void disp_off_w(int state);
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);