diff options
author | 2020-04-22 12:13:37 +0200 | |
---|---|---|
committer | 2020-04-22 12:13:50 +0200 | |
commit | 69d5d89940d2463227adb84047bc0c9e69b8904d (patch) | |
tree | 6b00ee44a17fa73180f18935f428b72b660f06f4 /src/devices/video/hlcd0538.h | |
parent | 996ec14b8395fb34bc861551777513b5f99c25db (diff) |
New machines marked as NOT_WORKING
----------------------------------
Executive Chess [hap, Sean Riddle]
Diffstat (limited to 'src/devices/video/hlcd0538.h')
-rw-r--r-- | src/devices/video/hlcd0538.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/devices/video/hlcd0538.h b/src/devices/video/hlcd0538.h index 694abe3648c..2b17167b160 100644 --- a/src/devices/video/hlcd0538.h +++ b/src/devices/video/hlcd0538.h @@ -58,11 +58,14 @@ protected: // device-level overrides virtual void device_start() override; + virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override { lcd_w(!m_lcd); } - int m_lcd; // input pin state - int m_clk; // " - int m_data; // " - u64 m_shift; + emu_timer *m_lcd_timer; + + int m_lcd = 0; + int m_clk = 0; + int m_data = 0; + u64 m_shift = 0; // callbacks devcb_write64 m_write_cols; |