diff options
Diffstat (limited to 'src/devices/video/crt9212.cpp')
-rw-r--r-- | src/devices/video/crt9212.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/devices/video/crt9212.cpp b/src/devices/video/crt9212.cpp index 575624d3dda..7e13f75fd5a 100644 --- a/src/devices/video/crt9212.cpp +++ b/src/devices/video/crt9212.cpp @@ -61,11 +61,6 @@ crt9212_device::crt9212_device(const machine_config &mconfig, const char *tag, d void crt9212_device::device_start() { - // resolve callbacks - m_write_dout.resolve_safe(); - m_write_rof.resolve_safe(); - m_write_wof.resolve_safe(); - // state saving save_item(NAME(m_data)); save_item(NAME(m_clrcnt)); @@ -92,7 +87,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 +102,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 +155,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) { |