mirror of
https://github.com/holub/mame
synced 2025-04-26 02:07:14 +03:00
Fixed the build.
Note: I changed the code back to what it was, but perhaps (!state && ..) might be preferable.
This commit is contained in:
parent
59f93c3788
commit
8c49f08001
@ -125,7 +125,7 @@ WRITE_LINE_MEMBER(decodmd_type1_device::rowdata_w)
|
|||||||
|
|
||||||
WRITE_LINE_MEMBER(decodmd_type1_device::rowclock_w)
|
WRITE_LINE_MEMBER(decodmd_type1_device::rowclock_w)
|
||||||
{
|
{
|
||||||
if (!state & m_rowclock) // on negative edge
|
if (~state & m_rowclock) // on negative edge
|
||||||
m_rowselect = (m_rowselect << 1) | m_rowdata;
|
m_rowselect = (m_rowselect << 1) | m_rowdata;
|
||||||
m_rowclock = state;
|
m_rowclock = state;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user