summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/mcs96/i8xc196.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/mcs96/i8xc196.cpp')
-rw-r--r--src/devices/cpu/mcs96/i8xc196.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/mcs96/i8xc196.cpp b/src/devices/cpu/mcs96/i8xc196.cpp
index 151b1f4b871..19553280de2 100644
--- a/src/devices/cpu/mcs96/i8xc196.cpp
+++ b/src/devices/cpu/mcs96/i8xc196.cpp
@@ -11,7 +11,7 @@
#include "emu.h"
#include "i8xc196.h"
-i8xc196_device::i8xc196_device(const machine_config &mconfig, device_type type, const char *name, std::string tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
+i8xc196_device::i8xc196_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) :
mcs96_device(mconfig, type, name, tag, owner, clock, 16, shortname, source)
{
}
@@ -29,7 +29,7 @@ void i8xc196_device::io_w8(UINT8 adr, UINT8 data)
case 1:
break;
default:
- logerror("%s: io_w8 %02x, %02x (%04x)\n", tag().c_str(), adr, data, PPC);
+ logerror("%s: io_w8 %02x, %02x (%04x)\n", tag(), adr, data, PPC);
}
return;
}
@@ -56,7 +56,7 @@ UINT8 i8xc196_device::io_r8(UINT8 adr)
return 0x00;
}
UINT8 data = 0x00;
- logerror("%s: io_r8 %02x, %02x (%04x)\n", tag().c_str(), adr, data, PPC);
+ logerror("%s: io_r8 %02x, %02x (%04x)\n", tag(), adr, data, PPC);
return data;
}
@@ -65,7 +65,7 @@ UINT16 i8xc196_device::io_r16(UINT8 adr)
if(adr < 2)
return 0x0000;
UINT16 data = 0x0000;
- logerror("%s: io_r16 %02x, %04x (%04x)\n", tag().c_str(), adr, data, PPC);
+ logerror("%s: io_r16 %02x, %04x (%04x)\n", tag(), adr, data, PPC);
return data;
}