mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
Attempt to fix warning reported by Cowering. (nw)
This commit is contained in:
parent
2d934ef214
commit
755c01a98e
@ -123,7 +123,7 @@ NETLIB_UPDATE(9316)
|
||||
sub.m_ent = INPLOGIC(m_ENT);
|
||||
const netlist_sig_t clrq = INPLOGIC(m_CLRQ);
|
||||
|
||||
if ((!sub.m_loadq | (sub.m_ent & INPLOGIC(m_ENP))) & clrq)
|
||||
if (((sub.m_loadq ^ 1) | (sub.m_ent & INPLOGIC(m_ENP))) & clrq)
|
||||
{
|
||||
sub.m_CLK.activate_lh();
|
||||
OUTLOGIC(sub.m_RC, sub.m_ent & (sub.m_cnt == MAXCNT), NLTIME_FROM_NS(27));
|
||||
|
Loading…
Reference in New Issue
Block a user