diff options
author | 2020-03-11 20:04:17 +0100 | |
---|---|---|
committer | 2020-03-11 20:04:17 +0100 | |
commit | 59337f9e503618cf287a1888da376010d6611682 (patch) | |
tree | 092fe65b1aae8aec16cd9bbe4cb80ecdcf25c670 /src/devices/video/crt9212.cpp | |
parent | 29f838fe84ff1de3ff852c3f8421fbe2b6b0067d (diff) |
src/devices: simplified some handlers (nw)
Diffstat (limited to 'src/devices/video/crt9212.cpp')
-rw-r--r-- | src/devices/video/crt9212.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/video/crt9212.cpp b/src/devices/video/crt9212.cpp index 575624d3dda..836680dffee 100644 --- a/src/devices/video/crt9212.cpp +++ b/src/devices/video/crt9212.cpp @@ -92,7 +92,7 @@ void crt9212_device::device_start() // clrcnt_w - clear counter //------------------------------------------------- -WRITE_LINE_MEMBER( crt9212_device::clrcnt_w ) +void crt9212_device::clrcnt_w(int state) { if (m_clrcnt && !state) { @@ -107,7 +107,7 @@ WRITE_LINE_MEMBER( crt9212_device::clrcnt_w ) // rclk_w - read clock //------------------------------------------------- -WRITE_LINE_MEMBER( crt9212_device::rclk_w ) +void crt9212_device::rclk_w(int state) { if (!m_rclk && state) { @@ -160,7 +160,7 @@ WRITE_LINE_MEMBER( crt9212_device::rclk_w ) // wclk_w - write clock //------------------------------------------------- -WRITE_LINE_MEMBER( crt9212_device::wclk_w ) +void crt9212_device::wclk_w(int state) { if (!m_wclk && state) { |