summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2009-06-13 17:03:27 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2009-06-13 17:03:27 +0000
commit1c07ac88cc4e4910e5b4d40c0332bc6c35150b8b (patch)
tree64cd886f67646a5285ff0c4589ef299f2c154e9b
parent38dfb82f396c8eead59d58c2c8b36492c60a00e0 (diff)
Disabled an heavy logerror msg.
-rw-r--r--src/emu/cpu/m6502/tdeco16.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/cpu/m6502/tdeco16.c b/src/emu/cpu/m6502/tdeco16.c
index bf94935cfb8..67b5ee7bc47 100644
--- a/src/emu/cpu/m6502/tdeco16.c
+++ b/src/emu/cpu/m6502/tdeco16.c
@@ -364,7 +364,9 @@ OP(2f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR2 ZPG ?? */
OP(4f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR4 ZPG ?? */
OP(6f) { RD_DUM; ILL; } /* 2 ILL / 5 BBR6 ZPG ?? */
OP(8f) { int tmp; cpustate->icount -= 1; RD_IMM;
+ #ifdef MAME_DEBUG
logerror("%04x: BANK (8F) %02x\n",PCW,tmp);
+ #endif
memory_write_byte_8le(cpustate->io,0,tmp);