summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/lpc-rtc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/lpc-rtc.h')
-rw-r--r--src/devices/machine/lpc-rtc.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/devices/machine/lpc-rtc.h b/src/devices/machine/lpc-rtc.h
index 3f4580b0cd1..3e8226e03e6 100644
--- a/src/devices/machine/lpc-rtc.h
+++ b/src/devices/machine/lpc-rtc.h
@@ -20,15 +20,6 @@ public:
virtual void map_extdevice(uint64_t memory_window_start, uint64_t memory_window_end, uint64_t memory_offset, address_space *memory_space,
uint64_t io_window_start, uint64_t io_window_end, uint64_t io_offset, address_space *io_space);
- DECLARE_READ8_MEMBER( index_r);
- DECLARE_WRITE8_MEMBER( index_w);
- DECLARE_READ8_MEMBER( target_r);
- DECLARE_WRITE8_MEMBER( target_w);
- DECLARE_READ8_MEMBER( extindex_r);
- DECLARE_WRITE8_MEMBER( extindex_w);
- DECLARE_READ8_MEMBER( exttarget_r);
- DECLARE_WRITE8_MEMBER( exttarget_w);
-
protected:
void device_start() override;
void device_reset() override;
@@ -39,6 +30,15 @@ private:
uint8_t cur_index, cur_extindex;
uint8_t ram[256];
+
+ DECLARE_READ8_MEMBER( index_r);
+ DECLARE_WRITE8_MEMBER( index_w);
+ DECLARE_READ8_MEMBER( target_r);
+ DECLARE_WRITE8_MEMBER( target_w);
+ DECLARE_READ8_MEMBER( extindex_r);
+ DECLARE_WRITE8_MEMBER( extindex_w);
+ DECLARE_READ8_MEMBER( exttarget_r);
+ DECLARE_WRITE8_MEMBER( exttarget_w);
};
DECLARE_DEVICE_TYPE(LPC_RTC, lpc_rtc_device)