summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/devcpu.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-02-10 19:08:37 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-02-10 19:08:37 +0000
commit601056b130756c77a3c63f206bb6162985945ed5 (patch)
treedf332216e298ad554b4ba131b75c1d5527d8dddf /src/emu/devcpu.h
parent7aa70ad1c57f834189086508f9f6509d16a5790f (diff)
- Added shortname to devices in order to make ROM loading per device possible. [Miodrag Milanovic]
- Updated all devices containing ROM regions to have short names and all modern devices too - Created new validation to check existence of short name if device contain ROM region defined
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 f4926dee28c..fad68f4650a 100644
--- a/src/emu/devcpu.h
+++ b/src/emu/devcpu.h
@@ -404,7 +404,7 @@ class cpu_device_config : public device_config,
protected:
// construction/destruction
- cpu_device_config(const machine_config &mconfig, device_type type, const char *name, const char *tag, const device_config *owner, UINT32 clock);
+ cpu_device_config(const machine_config &mconfig, device_type type, const char *name, const char *shortname, const char *tag, const device_config *owner, UINT32 clock);
};