summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/i7000.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/i7000.cpp')
-rw-r--r--src/mame/drivers/i7000.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/i7000.cpp b/src/mame/drivers/i7000.cpp
index a61380a1bc5..840650ed797 100644
--- a/src/mame/drivers/i7000.cpp
+++ b/src/mame/drivers/i7000.cpp
@@ -67,6 +67,11 @@ public:
, m_videoram(*this, "videoram")
{ }
+ void i7000(machine_config &config);
+
+ void init_i7000();
+
+private:
void video_start() override;
void machine_start() override;
@@ -81,13 +86,11 @@ public:
TILE_GET_INFO_MEMBER(get_bg_tile_info);
MC6845_ON_UPDATE_ADDR_CHANGED(crtc_addr);
- void init_i7000();
DECLARE_PALETTE_INIT(i7000);
DECLARE_DEVICE_IMAGE_LOAD_MEMBER( i7000_card );
DECLARE_READ8_MEMBER(i7000_kbd_r);
DECLARE_WRITE8_MEMBER(i7000_scanlines_w);
- void i7000(machine_config &config);
void i7000_io(address_map &map);
void i7000_mem(address_map &map);
};