Previous 199869 Revisions Next

r19309 Tuesday 4th December, 2012 at 18:35:00 UTC by O. Galibert
Now that was an annoying one (nw)
[src/mess/video]hd44780.c

trunk/src/mess/video/hd44780.c
r19308r19309
299299
300300READ8_MEMBER(hd44780_device::control_read)
301301{
302   return m_busy_flag<<7 || m_ac&0x7f;
302   return (m_busy_flag << 7) | (m_ac & 0x7f);
303303}
304304
305305void hd44780_device::update_ac(void) // m_data_bus_flag was left as global so old savestates will work

Previous 199869 Revisions Next


© 1997-2024 The MAME Team