summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/qvt103.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/qvt103.cpp')
-rw-r--r--src/mame/drivers/qvt103.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/drivers/qvt103.cpp b/src/mame/drivers/qvt103.cpp
index 95aac6651ba..017dfb9238f 100644
--- a/src/mame/drivers/qvt103.cpp
+++ b/src/mame/drivers/qvt103.cpp
@@ -24,12 +24,14 @@ public:
, m_p_chargen(*this, "chargen")
{ }
+ void qvt103(machine_config &config);
+
+private:
u32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
- void qvt103(machine_config &config);
void io_map(address_map &map);
void mem_map(address_map &map);
-private:
+
required_device<cpu_device> m_maincpu;
required_region_ptr<u8> m_p_chargen;
};