mirror of
https://github.com/holub/mame
synced 2025-04-24 01:11:11 +03:00
commented out debug code that mingw didn't like because it was wrong.
This commit is contained in:
parent
b258d93893
commit
2bccf6a3b0
@ -266,7 +266,7 @@ WRITE8_DEVICE_HANDLER( timekeeper_w )
|
||||
data &= ~FLAGS_BL;
|
||||
}
|
||||
|
||||
logerror( "%08x: timekeeper_write( %s, %04x, %02x )\n", activecpu_get_pc(), c->device->token, offset, data );
|
||||
// logerror( "%08x: timekeeper_write( %s, %04x, %02x )\n", activecpu_get_pc(), c->device->tag, offset, data );
|
||||
c->data[ offset ] = data;
|
||||
}
|
||||
|
||||
@ -274,7 +274,7 @@ READ8_DEVICE_HANDLER( timekeeper_r )
|
||||
{
|
||||
timekeeper_state *c = get_safe_token(device);
|
||||
UINT8 data = c->data[ offset ];
|
||||
logerror( "%08x: timekeeper_read( %s, %04x ) %02x\n", activecpu_get_pc(), c->device->token, offset, data );
|
||||
// logerror( "%08x: timekeeper_read( %s, %04x ) %02x\n", activecpu_get_pc(), c->device->tag, offset, data );
|
||||
return data;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user