summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/aquarius.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2013-02-11 07:44:56 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2013-02-11 07:44:56 +0000
commita440a8e0200a36491ae540f6f00beae59c148549 (patch)
treeb4c31ebadaa2857396c37178674086420bf1658f /src/mess/includes/aquarius.h
parent4b0b4e6b2fa7eb5105859f561354662d479f53be (diff)
Cleanups and version bumpmame0148u1
Diffstat (limited to 'src/mess/includes/aquarius.h')
-rw-r--r--src/mess/includes/aquarius.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/mess/includes/aquarius.h b/src/mess/includes/aquarius.h
index 4ebe80df8f5..75ac5b72720 100644
--- a/src/mess/includes/aquarius.h
+++ b/src/mess/includes/aquarius.h
@@ -20,22 +20,22 @@ class aquarius_state : public driver_device
public:
aquarius_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_cassette(*this, CASSETTE_TAG),
- m_speaker(*this, SPEAKER_TAG),
- m_screen(*this, "screen"),
- m_ram(*this, RAM_TAG),
- m_rom(*this, "maincpu"),
- m_videoram(*this, "videoram"),
- m_colorram(*this, "colorram"),
- m_y0(*this, "Y0"),
- m_y1(*this, "Y1"),
- m_y2(*this, "Y2"),
- m_y3(*this, "Y3"),
- m_y4(*this, "Y4"),
- m_y5(*this, "Y5"),
- m_y6(*this, "Y6"),
- m_y7(*this, "Y7")
+ m_maincpu(*this, "maincpu"),
+ m_cassette(*this, CASSETTE_TAG),
+ m_speaker(*this, SPEAKER_TAG),
+ m_screen(*this, "screen"),
+ m_ram(*this, RAM_TAG),
+ m_rom(*this, "maincpu"),
+ m_videoram(*this, "videoram"),
+ m_colorram(*this, "colorram"),
+ m_y0(*this, "Y0"),
+ m_y1(*this, "Y1"),
+ m_y2(*this, "Y2"),
+ m_y3(*this, "Y3"),
+ m_y4(*this, "Y4"),
+ m_y5(*this, "Y5"),
+ m_y6(*this, "Y6"),
+ m_y7(*this, "Y7")
{ }
required_device<legacy_cpu_device> m_maincpu;