diff options
author | 2013-04-10 08:08:19 +0000 | |
---|---|---|
committer | 2013-04-10 08:08:19 +0000 | |
commit | d68164b4c1216ac23354ac3a4634048c2c0e998a (patch) | |
tree | 39687bf5baf731642d0479262ffde5811980683c /src/mess/drivers/kim1.c | |
parent | b8f2bac8dd48cce0f8e07fc20c63e05a8aac476d (diff) |
unified formating of state class constructors, no functional change (nw)
Diffstat (limited to 'src/mess/drivers/kim1.c')
-rw-r--r-- | src/mess/drivers/kim1.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/mess/drivers/kim1.c b/src/mess/drivers/kim1.c index 30cba36e852..65149d78fe0 100644 --- a/src/mess/drivers/kim1.c +++ b/src/mess/drivers/kim1.c @@ -106,15 +106,14 @@ class kim1_state : public driver_device { public: kim1_state(const machine_config &mconfig, device_type type, const char *tag) - : driver_device(mconfig, type, tag) - , m_maincpu(*this, "maincpu") - , m_riot2(*this, "miot_u2") - , m_cass(*this, CASSETTE_TAG) - , m_line0(*this, "LINE0") - , m_line1(*this, "LINE1") - , m_line2(*this, "LINE2") - , m_line3(*this, "LINE3") - { } + : driver_device(mconfig, type, tag), + m_maincpu(*this, "maincpu"), + m_riot2(*this, "miot_u2"), + m_cass(*this, CASSETTE_TAG), + m_line0(*this, "LINE0"), + m_line1(*this, "LINE1"), + m_line2(*this, "LINE2"), + m_line3(*this, "LINE3") { } required_device<cpu_device> m_maincpu; required_device<mos6530_device> m_riot2; |