mirror of
https://github.com/holub/mame
synced 2025-05-30 17:41:47 +03:00
turn logging back off (nw)
This commit is contained in:
parent
d28b18c415
commit
c11d8fcdc6
@ -459,13 +459,13 @@ WRITE_LINE_MEMBER(v53_base_device::dma_hrq_changed)
|
||||
|
||||
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)
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
|
@ -54,7 +54,7 @@ const device_type UPD71071_V53 = &device_creator<upd71071_v53_device>;
|
||||
// MACROS / CONSTANTS
|
||||
//**************************************************************************
|
||||
|
||||
#define LOG 1
|
||||
#define LOG 0
|
||||
|
||||
|
||||
enum
|
||||
@ -1101,7 +1101,8 @@ READ8_MEMBER(upd71071_v53_device::read)
|
||||
UINT8 ret = 0;
|
||||
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)
|
||||
{
|
||||
case 0x01: // Channel
|
||||
|
Loading…
Reference in New Issue
Block a user