mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
hlcd0515: clear buffer was at wrong time (nw)
This commit is contained in:
parent
be72700557
commit
12331832fe
@ -127,8 +127,7 @@ void hlcd0515_device::set_control()
|
||||
}
|
||||
|
||||
// clock 4: read/write mode
|
||||
if (m_control & 1)
|
||||
m_buffer = m_ram[m_rowsel];
|
||||
m_buffer = (m_control & 1) ? m_ram[m_rowsel] : 0;
|
||||
}
|
||||
|
||||
void hlcd0569_device::set_control()
|
||||
@ -198,7 +197,6 @@ WRITE_LINE_MEMBER(hlcd0515_device::write_cs)
|
||||
|
||||
m_count = 0;
|
||||
m_control = 0;
|
||||
m_buffer = 0;
|
||||
}
|
||||
|
||||
m_cs = state;
|
||||
|
Loading…
Reference in New Issue
Block a user