diff options
author | 2013-06-11 07:16:42 +0000 | |
---|---|---|
committer | 2013-06-11 07:16:42 +0000 | |
commit | 16f5234d435ee57b65043533f8fa2b105fb15a77 (patch) | |
tree | c6f95d84c6a1cb89ced5353230a98e1f61a6938e /src/mess/machine/concept_exp.h | |
parent | 2dc6458ede8c0039e308c994e50acb3b8de2d1ae (diff) |
Cleanups and version bumpmame0149
Diffstat (limited to 'src/mess/machine/concept_exp.h')
-rw-r--r-- | src/mess/machine/concept_exp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/machine/concept_exp.h b/src/mess/machine/concept_exp.h index 4c8e22d20e2..fc9fab4be13 100644 --- a/src/mess/machine/concept_exp.h +++ b/src/mess/machine/concept_exp.h @@ -54,12 +54,12 @@ class concept_exp_card_device : public device_slot_card_interface public: // construction/destruction concept_exp_card_device(const machine_config &mconfig, device_t &device); - + DECLARE_READ8_MEMBER( reg_r ) { return 0xff; } DECLARE_READ8_MEMBER( rom_r ) { return 0xff; } DECLARE_WRITE8_MEMBER( reg_w ) {} DECLARE_WRITE8_MEMBER( rom_w ) {} - + protected: }; @@ -70,19 +70,19 @@ class concept_fdc_device : public device_t, public: // construction/destruction concept_fdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - + DECLARE_READ8_MEMBER(reg_r); DECLARE_READ8_MEMBER(rom_r); DECLARE_WRITE8_MEMBER(reg_w); DECLARE_WRITE_LINE_MEMBER(intrq_w); DECLARE_WRITE_LINE_MEMBER(drq_w); - + // device-level overrides virtual void device_start(); virtual void device_reset(); virtual machine_config_constructor device_mconfig_additions() const; - + protected: device_t *m_wd179x; @@ -96,7 +96,7 @@ class concept_hdc_device : public device_t, public: // construction/destruction concept_hdc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - + DECLARE_READ8_MEMBER( reg_r ); DECLARE_READ8_MEMBER( rom_r ); DECLARE_WRITE8_MEMBER( reg_w ); |