summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/thedealr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/thedealr.cpp')
-rw-r--r--src/mame/drivers/thedealr.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/thedealr.cpp b/src/mame/drivers/thedealr.cpp
index 055ac12aefb..07e54756b9a 100644
--- a/src/mame/drivers/thedealr.cpp
+++ b/src/mame/drivers/thedealr.cpp
@@ -53,6 +53,9 @@ public:
m_leds(*this, "led%u", 0U)
{ }
+ void thedealr(machine_config &config);
+
+private:
// IOX
DECLARE_READ8_MEMBER(iox_r);
DECLARE_WRITE8_MEMBER(iox_w);
@@ -71,15 +74,13 @@ public:
DECLARE_PALETTE_INIT(thedealr);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(screen_vblank);
- void thedealr(machine_config &config);
+
void thedealr(address_map &map);
void thedealr_sub(address_map &map);
-protected:
virtual void machine_start() override;
virtual void machine_reset() override;
-private:
// devices
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;