summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/bbc/tube/tube_65c102.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/bbc/tube/tube_65c102.h')
-rw-r--r--src/devices/bus/bbc/tube/tube_65c102.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/bus/bbc/tube/tube_65c102.h b/src/devices/bus/bbc/tube/tube_65c102.h
index d1892b8f13e..1ba891739d1 100644
--- a/src/devices/bus/bbc/tube/tube_65c102.h
+++ b/src/devices/bus/bbc/tube/tube_65c102.h
@@ -31,10 +31,6 @@ public:
// construction/destruction
bbc_tube_65c102_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
-
- void tube_6502_mem(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -54,6 +50,11 @@ private:
required_memory_region m_rom;
bool m_rom_enabled;
+
+ DECLARE_READ8_MEMBER( read );
+ DECLARE_WRITE8_MEMBER( write );
+
+ void tube_6502_mem(address_map &map);
};