mirror of
https://github.com/holub/mame
synced 2025-06-30 16:00:01 +03:00
Make logic signal outputs default to low at startup. (nw)
This commit is contained in:
parent
5c516aff00
commit
5f7587dd9e
@ -49,7 +49,7 @@ public:
|
|||||||
|
|
||||||
ATTR_COLD void reset()
|
ATTR_COLD void reset()
|
||||||
{
|
{
|
||||||
m_Q[0].initial(1);
|
m_Q[0].initial(0);
|
||||||
m_active = 1;
|
m_active = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ public:
|
|||||||
|
|
||||||
ATTR_COLD void reset()
|
ATTR_COLD void reset()
|
||||||
{
|
{
|
||||||
m_Q[0].initial(1);
|
m_Q[0].initial(0);
|
||||||
m_active = 1;
|
m_active = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user