summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Scott Stone <tafoid@gmail.com>2016-05-02 15:25:56 -0400
committer Scott Stone <tafoid@gmail.com>2016-05-02 15:25:56 -0400
commit1db114abc921f79ad26fe2ec1b11aa984927f959 (patch)
tree44c0851a085e3bbef02acd3e1b08cd2eddc916ae /src
parentc422fcef6e4e83ef618a5562bcb53dc10403df4a (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)
Diffstat (limited to 'src')
-rw-r--r--src/mame/machine/deco146.cpp6
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)