summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vt520.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vt520.cpp')
-rw-r--r--src/mame/drivers/vt520.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/vt520.cpp b/src/mame/drivers/vt520.cpp
index eb27b62cda6..1f48f6ae4e8 100644
--- a/src/mame/drivers/vt520.cpp
+++ b/src/mame/drivers/vt520.cpp
@@ -24,14 +24,16 @@ public:
m_maincpu(*this, "maincpu"),
m_rom(*this, "maincpu") { }
+ void vt520(machine_config &config);
+ void vt420(machine_config &config);
+
+private:
DECLARE_READ8_MEMBER(vt520_some_r);
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_vt520(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<cpu_device> m_maincpu;
required_region_ptr<uint8_t> m_rom;
- void vt520(machine_config &config);
- void vt420(machine_config &config);
void vt520_io(address_map &map);
void vt520_mem(address_map &map);
};