summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/abcbus/hdc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/abcbus/hdc.h')
-rw-r--r--src/devices/bus/abcbus/hdc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/bus/abcbus/hdc.h b/src/devices/bus/abcbus/hdc.h
index c9cde8b8ab5..a8a1c6ca17b 100644
--- a/src/devices/bus/abcbus/hdc.h
+++ b/src/devices/bus/abcbus/hdc.h
@@ -31,8 +31,6 @@ public:
// construction/destruction
abc_hdc_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- void abc_hdc_io(address_map &map);
- void abc_hdc_mem(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -47,6 +45,9 @@ protected:
private:
required_device<cpu_device> m_maincpu;
+
+ void abc_hdc_io(address_map &map);
+ void abc_hdc_mem(address_map &map);
};