summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/segald.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/segald.cpp')
-rw-r--r--src/mame/drivers/segald.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mame/drivers/segald.cpp b/src/mame/drivers/segald.cpp
index 5afc70a53c1..6b178a960b8 100644
--- a/src/mame/drivers/segald.cpp
+++ b/src/mame/drivers/segald.cpp
@@ -42,6 +42,11 @@ public:
m_palette(*this, "palette")
{ }
+ void astron(machine_config &config);
+
+ void init_astron();
+
+private:
uint8_t m_nmi_enable;
required_device<pioneer_ldv1000_device> m_laserdisc;
@@ -63,7 +68,6 @@ public:
DECLARE_WRITE8_MEMBER(astron_COLOR_write);
DECLARE_WRITE8_MEMBER(astron_FIX_write);
DECLARE_WRITE8_MEMBER(astron_io_bankswitch_w);
- void init_astron();
virtual void machine_start() override;
uint32_t screen_update_astron(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
void astron_draw_characters(bitmap_rgb32 &bitmap,const rectangle &cliprect);
@@ -71,7 +75,6 @@ public:
required_device<cpu_device> m_maincpu;
required_device<gfxdecode_device> m_gfxdecode;
required_device<palette_device> m_palette;
- void astron(machine_config &config);
void mainmem(address_map &map);
void mainport(address_map &map);
};