summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/linflash.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/linflash.h')
-rw-r--r--src/devices/machine/linflash.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/devices/machine/linflash.h b/src/devices/machine/linflash.h
index 2eb498d93e0..1df866825bd 100644
--- a/src/devices/machine/linflash.h
+++ b/src/devices/machine/linflash.h
@@ -36,10 +36,12 @@ class linear_flash_pccard_16mb_device : public linear_flash_pccard_device
public:
linear_flash_pccard_16mb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void linear_flash_pccard_16mb(address_map &map);
protected:
// device-level overrides
virtual void device_add_mconfig(machine_config &config) override;
+
+private:
+ void linear_flash_pccard_16mb(address_map &map);
};
@@ -48,10 +50,12 @@ class linear_flash_pccard_32mb_device : public linear_flash_pccard_device
public:
linear_flash_pccard_32mb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void linear_flash_pccard_32mb(address_map &map);
protected:
// device-level overrides
virtual void device_add_mconfig(machine_config &config) override;
+
+private:
+ void linear_flash_pccard_32mb(address_map &map);
};
@@ -60,10 +64,12 @@ class linear_flash_pccard_64mb_device : public linear_flash_pccard_device
public:
linear_flash_pccard_64mb_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void linear_flash_pccard_64mb(address_map &map);
protected:
// device-level overrides
virtual void device_add_mconfig(machine_config &config) override;
+
+private:
+ void linear_flash_pccard_64mb(address_map &map);
};