diff options
Diffstat (limited to 'src/devices/video/mm5445.cpp')
-rw-r--r-- | src/devices/video/mm5445.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/devices/video/mm5445.cpp b/src/devices/video/mm5445.cpp index 6b857ed19b3..cecd0674495 100644 --- a/src/devices/video/mm5445.cpp +++ b/src/devices/video/mm5445.cpp @@ -10,7 +10,7 @@ */ #include "emu.h" -#include "video/mm5445.h" +#include "mm5445.h" DEFINE_DEVICE_TYPE(MM5445, mm5445_device, "mm5445", "MM5445 VFD Driver") @@ -51,9 +51,6 @@ mm5448_device::mm5448_device(const machine_config &mconfig, const char *tag, dev void mm5445_device::device_start() { - // resolve callbacks - m_write_output.resolve_safe(); - // zerofill m_clk = 0; m_enable = 0; @@ -74,7 +71,7 @@ void mm5445_device::device_start() // handlers //------------------------------------------------- -WRITE_LINE_MEMBER(mm5445_device::clock_w) +void mm5445_device::clock_w(int state) { state = (state) ? 1 : 0; bool rise = state && !m_clk; |