summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/mrdo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/mrdo.h')
-rw-r--r--src/mame/includes/mrdo.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mame/includes/mrdo.h b/src/mame/includes/mrdo.h
index 56cfa2f399b..a14c9db7961 100644
--- a/src/mame/includes/mrdo.h
+++ b/src/mame/includes/mrdo.h
@@ -20,6 +20,10 @@ public:
m_gfxdecode(*this, "gfxdecode"),
m_palette(*this, "palette") { }
+ void mrlo(machine_config &config);
+ void mrdo(machine_config &config);
+
+private:
/* memory pointers */
required_shared_ptr<uint8_t> m_bgvideoram;
required_shared_ptr<uint8_t> m_fgvideoram;
@@ -44,7 +48,5 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void mrlo(machine_config &config);
- void mrdo(machine_config &config);
void main_map(address_map &map);
};