summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/c1541.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/c1541.h')
-rw-r--r--src/mess/machine/c1541.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mess/machine/c1541.h b/src/mess/machine/c1541.h
index 7e3c7e247e6..b47fdcd81be 100644
--- a/src/mess/machine/c1541.h
+++ b/src/mess/machine/c1541.h
@@ -211,7 +211,13 @@ public:
// construction/destruction
c1541_prologic_dos_classic_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ // device-level overrides
+ virtual void device_start();
+
// not really public
+ DECLARE_READ8_MEMBER( read );
+ DECLARE_WRITE8_MEMBER( write );
+
DECLARE_READ8_MEMBER( pia_r );
DECLARE_WRITE8_MEMBER( pia_w );
@@ -222,6 +228,8 @@ public:
protected:
required_device<pia6821_device> m_pia;
required_device<centronics_device> m_centronics;
+
+ UINT8 *m_mmu_rom;
};