summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mjsenpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mjsenpu.cpp')
-rw-r--r--src/mame/drivers/mjsenpu.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/mjsenpu.cpp b/src/mame/drivers/mjsenpu.cpp
index 62ae18bf19c..a3e8dd3a67c 100644
--- a/src/mame/drivers/mjsenpu.cpp
+++ b/src/mame/drivers/mjsenpu.cpp
@@ -65,6 +65,11 @@ public:
{
}
+ void mjsenpu(machine_config &config);
+
+ void init_mjsenpu();
+
+private:
/* devices */
required_device<e132xt_device> m_maincpu;
required_device<okim6295_device> m_oki;
@@ -94,14 +99,12 @@ public:
DECLARE_READ32_MEMBER(vram_r);
DECLARE_WRITE32_MEMBER(vram_w);
- void init_mjsenpu();
virtual void machine_start() override;
virtual void machine_reset() override;
virtual void video_start() override;
uint32_t screen_update_mjsenpu(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
required_device<palette_device> m_palette;
- void mjsenpu(machine_config &config);
void mjsenpu_32bit_map(address_map &map);
void mjsenpu_io(address_map &map);
};