summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/hd44780.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2014-03-25 21:53:54 +0000
committer Olivier Galibert <galibert@pobox.com>2014-03-25 21:53:54 +0000
commit65d778cad30497d412c7a05200fc3aa9b71cac1e (patch)
tree42517f90a95bf9a3d9cccf4f0ea9c7b3485faee9 /src/emu/video/hd44780.h
parent9957ec800350177870827f4403e4ad43006dd8a2 (diff)
h8: Rewrite [O. Galibert]
(mess) mu100: Main screen turn on [O. Galibert]
Diffstat (limited to 'src/emu/video/hd44780.h')
-rw-r--r--src/emu/video/hd44780.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/video/hd44780.h b/src/emu/video/hd44780.h
index 2e02ef75e0d..aaa34fcf7e9 100644
--- a/src/emu/video/hd44780.h
+++ b/src/emu/video/hd44780.h
@@ -52,6 +52,8 @@ public:
virtual DECLARE_READ8_MEMBER(control_read);
virtual DECLARE_WRITE8_MEMBER(data_write);
virtual DECLARE_READ8_MEMBER(data_read);
+
+ const UINT8 *render();
virtual UINT32 screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
protected:
@@ -123,6 +125,7 @@ private:
int m_rw_state;
bool m_nibble;
int m_charset_type;
+ UINT8 m_render_buf[80*16];
enum { DDRAM, CGRAM };
};