summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/ide.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/ide.h')
-rw-r--r--src/devices/bus/isa/ide.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/isa/ide.h b/src/devices/bus/isa/ide.h
index b6148793a08..e0e58661389 100644
--- a/src/devices/bus/isa/ide.h
+++ b/src/devices/bus/isa/ide.h
@@ -21,12 +21,6 @@ public:
// construction/destruction
isa16_ide_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- bool is_primary() { return m_is_primary; }
- void map(address_map &map);
- void alt_map(address_map &map);
- READ8_MEMBER(ide16_alt_r);
- WRITE8_MEMBER(ide16_alt_w);
-
static void cdrom_headphones(device_t *device);
protected:
@@ -40,6 +34,12 @@ protected:
private:
DECLARE_WRITE_LINE_MEMBER(ide_interrupt);
+ READ8_MEMBER(ide16_alt_r);
+ WRITE8_MEMBER(ide16_alt_w);
+ bool is_primary() { return m_is_primary; }
+
+ void map(address_map &map);
+ void alt_map(address_map &map);
// internal state
bool m_is_primary;