summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/iqblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/iqblock.h')
-rw-r--r--src/mame/includes/iqblock.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mame/includes/iqblock.h b/src/mame/includes/iqblock.h
index d2cc38676d0..c78be4a0caa 100644
--- a/src/mame/includes/iqblock.h
+++ b/src/mame/includes/iqblock.h
@@ -14,6 +14,12 @@ public:
m_bgvideoram(*this, "bgvideoram"),
m_fgvideoram(*this, "fgvideoram") { }
+ void iqblock(machine_config &config);
+
+ void init_grndtour();
+ void init_iqblock();
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -36,15 +42,12 @@ public:
TIMER_DEVICE_CALLBACK_MEMBER(irq);
- void init_grndtour();
- void init_iqblock();
virtual void video_start() override;
TILE_GET_INFO_MEMBER(get_bg_tile_info);
TILE_GET_INFO_MEMBER(get_fg_tile_info);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void iqblock(machine_config &config);
void main_map(address_map &map);
void main_portmap(address_map &map);
};