summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/rt1715.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/rt1715.cpp')
-rw-r--r--src/mame/drivers/rt1715.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/rt1715.cpp b/src/mame/drivers/rt1715.cpp
index 3f6b0034ba2..187cc87855e 100644
--- a/src/mame/drivers/rt1715.cpp
+++ b/src/mame/drivers/rt1715.cpp
@@ -36,6 +36,10 @@ public:
{
}
+ void rt1715(machine_config &config);
+ void rt1715w(machine_config &config);
+
+private:
DECLARE_WRITE8_MEMBER(rt1715_floppy_enable);
DECLARE_READ8_MEMBER(k7658_led1_r);
DECLARE_READ8_MEMBER(k7658_led2_r);
@@ -45,17 +49,14 @@ public:
DECLARE_PALETTE_INIT(rt1715);
I8275_DRAW_CHARACTER_MEMBER( crtc_display_pixels );
- void rt1715(machine_config &config);
- void rt1715w(machine_config &config);
void k7658_io(address_map &map);
void k7658_mem(address_map &map);
void rt1715_io(address_map &map);
void rt1715_mem(address_map &map);
-protected:
+
virtual void machine_start() override;
virtual void machine_reset() override;
-private:
int m_led1_val;
int m_led2_val;
required_device<cpu_device> m_maincpu;