diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/mess/machine/sat_rom.h | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/mess/machine/sat_rom.h')
-rw-r--r-- | src/mess/machine/sat_rom.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mess/machine/sat_rom.h b/src/mess/machine/sat_rom.h index 364031cf76c..7a42ffe0354 100644 --- a/src/mess/machine/sat_rom.h +++ b/src/mess/machine/sat_rom.h @@ -11,13 +11,12 @@ class saturn_rom_device : public device_t, { public: // construction/destruction - saturn_rom_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock); + saturn_rom_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); saturn_rom_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // device-level overrides virtual void device_start(); virtual void device_reset(); - virtual void device_config_complete() { m_shortname = "sat_rom"; } // reading and writing virtual DECLARE_READ32_MEMBER(read_rom); |