summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/deco146.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/deco146.h')
-rw-r--r--src/mame/machine/deco146.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/deco146.h b/src/mame/machine/deco146.h
index 1f9fff545b1..c5a15becf46 100644
--- a/src/mame/machine/deco146.h
+++ b/src/mame/machine/deco146.h
@@ -80,8 +80,8 @@ struct deco146port_xx
class deco_146_base_device : public device_t
{
public:
- //deco_146_base_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- deco_146_base_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);
+ //deco_146_base_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
+ deco_146_base_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);
void write_data(address_space &space, UINT16 address, UINT16 data, UINT16 mem_mask, UINT8 &csflags);
UINT16 read_data(UINT16 address, UINT16 mem_mask, UINT8 &csflags);
@@ -164,7 +164,7 @@ extern const device_type DECO146BASE;
class deco146_device : public deco_146_base_device
{
public:
- deco146_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ deco146_device(const machine_config &mconfig, std::string tag, device_t *owner, UINT32 clock);
};
extern const device_type DECO146PROT;