diff options
| author | 2015-07-04 00:50:16 +0200 | |
|---|---|---|
| committer | 2015-07-04 13:23:14 +0200 | |
| commit | d1b88dcbefc4084ee3b60a3a534af72867a9d5da (patch) | |
| tree | 1205c2d1599428ffa4e231a64b3290a05838090a | |
| parent | ca310eef39da7d0afd7d9915b2be4f75e92f6115 (diff) | |
Fix monoflops
| -rw-r--r-- | src/emu/netlist/devices/nld_74123.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/netlist/devices/nld_74123.c b/src/emu/netlist/devices/nld_74123.c index 5196891789a..37ec0c637f7 100644 --- a/src/emu/netlist/devices/nld_74123.c +++ b/src/emu/netlist/devices/nld_74123.c @@ -14,7 +14,7 @@ NETLIB_NAMESPACE_DEVICES_START() NETLIB_START(74123) { - if ((m_dev_type != 9602) || (m_dev_type != 4538) ) + if ((m_dev_type != 9602) && (m_dev_type != 4538) ) m_dev_type = 74123; register_sub("RP", m_RP); |
