turn logging back off (nw)

This commit is contained in:
mamehaze 2015-03-09 00:23:22 +00:00
parent d28b18c415
commit c11d8fcdc6
2 changed files with 5 additions and 4 deletions

View File

@ -459,13 +459,13 @@ WRITE_LINE_MEMBER(v53_base_device::dma_hrq_changed)
WRITE8_MEMBER(v53_base_device::dma_io_3_w) WRITE8_MEMBER(v53_base_device::dma_io_3_w)
{ {
logerror("dma_io_3_w %02x\n", data); // logerror("dma_io_3_w %02x\n", data);
} }
READ8_MEMBER(v53_base_device::dma_memin_r) READ8_MEMBER(v53_base_device::dma_memin_r)
{ {
UINT8 ret = rand(); UINT8 ret = rand();
logerror("dma_memin_r offset %08x %02x\n", offset, ret); // logerror("dma_memin_r offset %08x %02x\n", offset, ret);
return ret; return ret;
} }

View File

@ -54,7 +54,7 @@ const device_type UPD71071_V53 = &device_creator<upd71071_v53_device>;
// MACROS / CONSTANTS // MACROS / CONSTANTS
//************************************************************************** //**************************************************************************
#define LOG 1 #define LOG 0
enum enum
@ -1101,7 +1101,8 @@ READ8_MEMBER(upd71071_v53_device::read)
UINT8 ret = 0; UINT8 ret = 0;
int channel = m_selected_channel; int channel = m_selected_channel;
logerror("DMA: read from register %02x\n",offset); if (LOG) logerror("DMA: read from register %02x\n",offset);
switch (offset) switch (offset)
{ {
case 0x01: // Channel case 0x01: // Channel