diff options
author | 2016-05-02 15:25:56 -0400 | |
---|---|---|
committer | 2016-05-02 15:25:56 -0400 | |
commit | 1db114abc921f79ad26fe2ec1b11aa984927f959 (patch) | |
tree | 44c0851a085e3bbef02acd3e1b08cd2eddc916ae | |
parent | c422fcef6e4e83ef618a5562bcb53dc10403df4a (diff) |
Temp fix to regain speed in edrandy and clones (and quite possibly more) by commenting select logerrors that are spammed unmerciful causing extreme performance degradation (nw)
-rw-r--r-- | src/mame/machine/deco146.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/deco146.cpp b/src/mame/machine/deco146.cpp index d0ba7bd27e3..8b4dbcac8d5 100644 --- a/src/mame/machine/deco146.cpp +++ b/src/mame/machine/deco146.cpp @@ -1179,12 +1179,12 @@ void deco_146_base_device::write_data(address_space &space, UINT16 address, UINT if (i==0) // the first cs is our internal protection area { - logerror("write matches cs table (protection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask); +// logerror("write matches cs table (protection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask); write_protport(space, real_address, data, mem_mask); } else { - logerror("write matches cs table (external connection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask); +// logerror("write matches cs table (external connection) %01x %04x %04x %04x\n", i, real_address, data, mem_mask); } } } @@ -1249,7 +1249,7 @@ void deco_146_base_device::write_protport(address_space &space, UINT16 address, } else if ((address&0xff) == m_mask_port) { - logerror("LOAD NAND REGISTER %04x %04x\n", data, mem_mask); +// logerror("LOAD NAND REGISTER %04x %04x\n", data, mem_mask); COMBINE_DATA(&m_nand); } else if ((address&0xff) == m_soundlatch_port) |