summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/tim011.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/tim011.cpp')
-rw-r--r--src/mame/drivers/tim011.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/drivers/tim011.cpp b/src/mame/drivers/tim011.cpp
index 37c367ff5ed..cad70b3cab4 100644
--- a/src/mame/drivers/tim011.cpp
+++ b/src/mame/drivers/tim011.cpp
@@ -28,6 +28,9 @@ public:
m_floppy2(*this, FDC9266_TAG ":2:35dd"),
m_floppy3(*this, FDC9266_TAG ":3:35dd") { }
+ void tim011(machine_config &config);
+
+private:
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_tim011(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -44,7 +47,6 @@ public:
required_device<floppy_image_device> m_floppy1;
required_device<floppy_image_device> m_floppy2;
required_device<floppy_image_device> m_floppy3;
- void tim011(machine_config &config);
void tim011_io(address_map &map);
void tim011_mem(address_map &map);
};