summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/cpm.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/cpm.h')
-rw-r--r--src/devices/bus/c64/cpm.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/c64/cpm.h b/src/devices/bus/c64/cpm.h
index 2313007a58d..f0da4d6c0f7 100644
--- a/src/devices/bus/c64/cpm.h
+++ b/src/devices/bus/c64/cpm.h
@@ -29,12 +29,6 @@ public:
// construction/destruction
c64_cpm_cartridge_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- // not really public
- DECLARE_READ8_MEMBER( dma_r );
- DECLARE_WRITE8_MEMBER( dma_w );
-
- void z80_io(address_map &map);
- void z80_mem(address_map &map);
protected:
// device-level overrides
virtual void device_start() override;
@@ -56,6 +50,12 @@ private:
int m_ba;
int m_reset;
+
+ DECLARE_READ8_MEMBER( dma_r );
+ DECLARE_WRITE8_MEMBER( dma_w );
+
+ void z80_io(address_map &map);
+ void z80_mem(address_map &map);
};