diff options
Diffstat (limited to 'src/devices/video/sed1520.cpp')
-rw-r--r-- | src/devices/video/sed1520.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/video/sed1520.cpp b/src/devices/video/sed1520.cpp index ba5c68145cd..d868600595c 100644 --- a/src/devices/video/sed1520.cpp +++ b/src/devices/video/sed1520.cpp @@ -29,8 +29,9 @@ const device_type SED1520 = &device_creator<sed1520_device>; //------------------------------------------------- sed1520_device::sed1520_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, SED1520, "SED1520", tag, owner, clock, "sed1520", __FILE__), - m_screen_update_func(NULL) + device_t(mconfig, SED1520, "SED1520", tag, owner, clock, "sed1520", __FILE__), m_lcd_on(0), m_busy(0), m_page(0), m_column(0), m_old_column(0), m_start_line(0), + m_adc(0), m_static_drive(0), m_modify_write(false), + m_screen_update_func(nullptr) { } |