diff options
Diffstat (limited to 'src/emu/machine/ins8154.c')
-rw-r--r-- | src/emu/machine/ins8154.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/ins8154.c b/src/emu/machine/ins8154.c index f075ad39a13..ff319ad785a 100644 --- a/src/emu/machine/ins8154.c +++ b/src/emu/machine/ins8154.c @@ -133,7 +133,7 @@ READ8_DEVICE_HANDLER_TRAMPOLINE(ins8154, ins8154_r) { if (VERBOSE) { - logerror("%s: INS8154 '%s' Read from invalid offset %02x!\n", m_machine.describe_context(), tag(), offset); + logerror("%s: INS8154 '%s' Read from invalid offset %02x!\n", machine().describe_context(), tag(), offset); } return 0xff; } @@ -207,7 +207,7 @@ WRITE8_DEVICE_HANDLER_TRAMPOLINE(ins8154, ins8154_w) { if (VERBOSE) { - logerror("%s: INS8154 '%s' Write %02x to invalid offset %02x!\n", m_machine.describe_context(), tag(), data, offset); + logerror("%s: INS8154 '%s' Write %02x to invalid offset %02x!\n", machine().describe_context(), tag(), data, offset); } return; } @@ -225,7 +225,7 @@ WRITE8_DEVICE_HANDLER_TRAMPOLINE(ins8154, ins8154_w) case 0x22: if (VERBOSE) { - logerror("%s: INS8154 '%s' ODRA set to %02x\n", m_machine.describe_context(), tag(), data); + logerror("%s: INS8154 '%s' ODRA set to %02x\n", machine().describe_context(), tag(), data); } m_odra = data; @@ -234,7 +234,7 @@ WRITE8_DEVICE_HANDLER_TRAMPOLINE(ins8154, ins8154_w) case 0x23: if (VERBOSE) { - logerror("%s: INS8154 '%s' ODRB set to %02x\n", m_machine.describe_context(), tag(), data); + logerror("%s: INS8154 '%s' ODRB set to %02x\n", machine().describe_context(), tag(), data); } m_odrb = data; @@ -243,7 +243,7 @@ WRITE8_DEVICE_HANDLER_TRAMPOLINE(ins8154, ins8154_w) case 0x24: if (VERBOSE) { - logerror("%s: INS8154 '%s' MDR set to %02x\n", m_machine.describe_context(), tag(), data); + logerror("%s: INS8154 '%s' MDR set to %02x\n", machine().describe_context(), tag(), data); } m_mdr = data; |