summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-11-22 04:43:14 +1100
committer Vas Crabb <vas@vastheman.com>2019-11-22 04:43:47 +1100
commitbf571e5ef4f8c0cc0f3f89455fda07cb94f8b1f0 (patch)
tree32cdeee04a3b9c0bf471dfc8f98a02bc5a28fa0e
parent2d5bbd460bebaaef1627f372be438ff2b58fdb85 (diff)
sound/k007232.cpp: remove leftover debugging code (nw)
-rw-r--r--src/devices/sound/k007232.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/devices/sound/k007232.cpp b/src/devices/sound/k007232.cpp
index 485d9f3fe5f..a0adfb0d788 100644
--- a/src/devices/sound/k007232.cpp
+++ b/src/devices/sound/k007232.cpp
@@ -125,7 +125,6 @@ WRITE8_MEMBER(k007232_device::write)
case 0: // address step, LSB
case 1: // address step, MSB
m_step[channel] = m_fncode[(BIT(m_wreg[reg_index + 1], 0) << 8) | m_wreg[reg_index]];
- if (machine().input().code_pressed(KEYCODE_K)) printf("Step: %02x, %02x = %04x (%08x)\n", m_wreg[reg_index + 1], m_wreg[reg_index], (BIT(m_wreg[reg_index + 1], 0) << 8) | m_wreg[reg_index], m_step[channel]);
break;
case 2:
case 3:
@@ -134,7 +133,6 @@ WRITE8_MEMBER(k007232_device::write)
break;
case 5: // start address
m_start[channel] = get_start_address(channel);
- if (machine().input().code_pressed(KEYCODE_K)) printf("Start: %08x\n", m_start[channel]);
if (m_start[channel] < m_pcmlimit)
{
m_play[channel] = 1;