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