diff options
author | 2010-12-08 07:01:03 +0000 | |
---|---|---|
committer | 2010-12-08 07:01:03 +0000 | |
commit | 6bfc3413e47c0be1395a0d3f5e730c1b9da4f698 (patch) | |
tree | ed62b61caa6a5d7c6cd011fcdb71a6d9e7be159c /src/emu/machine/8237dma.c | |
parent | 3fc2f946282ace1a5e06cb8e2dea5759d58be87f (diff) |
Cleanups and version bump.mame0140u2
Diffstat (limited to 'src/emu/machine/8237dma.c')
-rw-r--r-- | src/emu/machine/8237dma.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/8237dma.c b/src/emu/machine/8237dma.c index 9875d82bff6..f58a4f0ad35 100644 --- a/src/emu/machine/8237dma.c +++ b/src/emu/machine/8237dma.c @@ -448,9 +448,9 @@ void i8237_device::i8237_timerproc() case DMA8237_S11: /* Output A8-A15 */ -// logerror("###### dma8237_timerproc %s: from %04x count=%x to %04x count=%x\n", tag(), -// m_chan[0].m_address, m_chan[0].m_count, -// m_chan[1].m_address, m_chan[1].m_count); +// logerror("###### dma8237_timerproc %s: from %04x count=%x to %04x count=%x\n", tag(), +// m_chan[0].m_address, m_chan[0].m_count, +// m_chan[1].m_address, m_chan[1].m_count); // FIXME: this will copy bytes correct, but not 16 bit words m_temporary_data = devcb_call_read8(&m_in_memr_func, m_chan[0].m_address); @@ -473,7 +473,7 @@ void i8237_device::i8237_timerproc() m_status |= 3; // set TC for channel 0 and 1 m_drq &= ~3; // clear drq for channel 0 and 1 - // logerror("!!! dma8237_timerproc DMA8237_S11 %s: m_drq=%x m_command=%x\n", tag(), m_drq, m_command); + // logerror("!!! dma8237_timerproc DMA8237_S11 %s: m_drq=%x m_command=%x\n", tag(), m_drq, m_command); } break; } @@ -540,7 +540,7 @@ WRITE8_DEVICE_HANDLER_TRAMPOLINE(i8237, i8237_w) { offset &= 0x0F; -// logerror("i8237_w: offset = %02x, data = %02x\n", offset, data ); +// logerror("i8237_w: offset = %02x, data = %02x\n", offset, data ); switch(offset) { case 0: |