summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/concept_exp.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/concept_exp.h')
-rw-r--r--src/mess/machine/concept_exp.h12
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 );