summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-03-26 15:18:37 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-03-26 15:18:37 +0000
commit051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch)
tree7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/emu/devcpu.h
parentffbe9bdcca43cb1f645cc0387f0835523471b97a (diff)
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/emu/devcpu.h')
-rw-r--r--src/emu/devcpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/devcpu.h b/src/emu/devcpu.h
index 6e1dac708ad..b172db2b169 100644
--- a/src/emu/devcpu.h
+++ b/src/emu/devcpu.h
@@ -378,7 +378,7 @@ class cpu_device : public device_t,
protected:
// construction/destruction
- cpu_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
+ cpu_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 = __FILE__);
virtual ~cpu_device();
};