summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/sbugger.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/sbugger.h')
-rw-r--r--src/mame/includes/sbugger.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mame/includes/sbugger.h b/src/mame/includes/sbugger.h
index ec4cd6d0290..20a717ded99 100644
--- a/src/mame/includes/sbugger.h
+++ b/src/mame/includes/sbugger.h
@@ -13,6 +13,9 @@ public:
m_videoram_attr(*this, "videoram_attr"),
m_videoram(*this, "videoram") { }
+ void sbugger(machine_config &config);
+
+private:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
@@ -30,7 +33,6 @@ public:
DECLARE_PALETTE_INIT(sbugger);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
- void sbugger(machine_config &config);
void sbugger_io_map(address_map &map);
void sbugger_map(address_map &map);
};