summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/gaplus.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/gaplus.h')
-rw-r--r--src/mame/includes/gaplus.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mame/includes/gaplus.h b/src/mame/includes/gaplus.h
index a8a1542d0af..b62798c4cdb 100644
--- a/src/mame/includes/gaplus.h
+++ b/src/mame/includes/gaplus.h
@@ -35,7 +35,7 @@ public:
, m_gfxdecode(*this, "gfxdecode")
, m_screen(*this, "screen")
, m_palette(*this, "palette")
- , m_proms_region(*this, "proms")
+ , m_proms_region(*this, "proms")
, m_customio_3(*this, "customio_3")
, m_videoram(*this, "videoram")
, m_spriteram(*this, "spriteram")
@@ -125,31 +125,31 @@ public:
class gapluso_state : public gaplus_base_state {
public:
- gapluso_state(const machine_config &mconfig, device_type type, const char *tag)
- : gaplus_base_state(mconfig, type, tag, "namcoio_1", "namcoio_2") {
- }
+ gapluso_state(const machine_config &mconfig, device_type type, const char *tag)
+ : gaplus_base_state(mconfig, type, tag, "namcoio_1", "namcoio_2") {
+ }
- void gapluso(machine_config &config);
+ void gapluso(machine_config &config);
protected:
- DECLARE_WRITE_LINE_MEMBER(vblank_irq);
+ DECLARE_WRITE_LINE_MEMBER(vblank_irq);
};
class gaplus_state : public gaplus_base_state {
public:
- gaplus_state(const machine_config &mconfig, device_type type, const char *tag)
- : gaplus_base_state(mconfig, type, tag, "namcoio_1", "namcoio_2")
- , m_lamps(*this, "lamp%u", 0U)
- {
- }
+ gaplus_state(const machine_config &mconfig, device_type type, const char *tag)
+ : gaplus_base_state(mconfig, type, tag, "namcoio_1", "namcoio_2")
+ , m_lamps(*this, "lamp%u", 0U)
+ {
+ }
- void gaplus(machine_config &config);
+ void gaplus(machine_config &config);
protected:
- virtual void machine_start() override;
+ virtual void machine_start() override;
- DECLARE_WRITE8_MEMBER(out_lamps0);
- DECLARE_WRITE8_MEMBER(out_lamps1);
+ DECLARE_WRITE8_MEMBER(out_lamps0);
+ DECLARE_WRITE8_MEMBER(out_lamps1);
- output_finder<2> m_lamps;
+ output_finder<2> m_lamps;
};