summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hlcd0515.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hlcd0515.cpp')
-rw-r--r--src/devices/video/hlcd0515.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/devices/video/hlcd0515.cpp b/src/devices/video/hlcd0515.cpp
index 04bf4f72e60..2f691eb839d 100644
--- a/src/devices/video/hlcd0515.cpp
+++ b/src/devices/video/hlcd0515.cpp
@@ -86,16 +86,6 @@ void hlcd0515_device::device_start()
//-------------------------------------------------
-// device_reset - device-specific reset
-//-------------------------------------------------
-
-void hlcd0515_device::device_reset()
-{
-}
-
-
-
-//-------------------------------------------------
// device_timer - handler timer events
//-------------------------------------------------
@@ -105,7 +95,7 @@ void hlcd0515_device::device_timer(emu_timer &timer, device_timer_id id, int par
m_rowout = 0;
// write to COL/ROW pins
- m_write_cols(m_rowout, m_blank ? 0 : m_ram[m_rowout], 0xffffffff);
+ m_write_cols(m_rowout, m_blank ? 0 : m_ram[m_rowout], ~0);
m_rowout++;
}