summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/nascom1.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-05-15 10:00:37 +1000
committer Vas Crabb <vas@vastheman.com>2017-05-15 10:00:37 +1000
commit7c470f36c421a3b94b9beab0b64eef1fb12c5b9d (patch)
treed02cf51e487637a3f8f200795ee16ad7e0e0be50 /src/mame/drivers/nascom1.cpp
parentc1879a8c6cf947e01399015bffc0e63050547628 (diff)
fix up bad state classes (nw)
Diffstat (limited to 'src/mame/drivers/nascom1.cpp')
-rw-r--r--src/mame/drivers/nascom1.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/drivers/nascom1.cpp b/src/mame/drivers/nascom1.cpp
index b97516ab3b7..3e8c3513e09 100644
--- a/src/mame/drivers/nascom1.cpp
+++ b/src/mame/drivers/nascom1.cpp
@@ -96,8 +96,8 @@ class nascom1_state : public nascom_state
{
public:
nascom1_state(const machine_config &mconfig, device_type type, const char *tag) :
- nascom_state(mconfig, type, tag)
- {}
+ nascom_state(mconfig, type, tag)
+ { }
uint32_t screen_update_nascom(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -108,12 +108,12 @@ class nascom2_state : public nascom_state
{
public:
nascom2_state(const machine_config &mconfig, device_type type, const char *tag) :
- nascom_state(mconfig, type, tag),
- m_nasbus(*this, "nasbus"),
- m_socket1(*this, "socket1"),
- m_socket2(*this, "socket2"),
- m_lsw1(*this, "lsw1")
- {}
+ nascom_state(mconfig, type, tag),
+ m_nasbus(*this, "nasbus"),
+ m_socket1(*this, "socket1"),
+ m_socket2(*this, "socket2"),
+ m_lsw1(*this, "lsw1")
+ { }
DECLARE_WRITE_LINE_MEMBER(ram_disable_w);
DECLARE_WRITE_LINE_MEMBER(ram_disable_cpm_w);
@@ -778,6 +778,6 @@ ROM_END
//**************************************************************************
// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
-COMP( 1977, nascom1, 0, 0, nascom1, nascom1, nascom_state, nascom, "Nascom Microcomputers", "Nascom 1", MACHINE_NO_SOUND_HW )
+COMP( 1977, nascom1, 0, 0, nascom1, nascom1, nascom1_state, nascom, "Nascom Microcomputers", "Nascom 1", MACHINE_NO_SOUND_HW )
COMP( 1979, nascom2, 0, 0, nascom2, nascom2, nascom2_state, nascom2, "Nascom Microcomputers", "Nascom 2", MACHINE_NO_SOUND_HW )
COMP( 1980, nascom2c, nascom2, 0, nascom2c, nascom2c, nascom2_state, nascom2c, "Nascom Microcomputers", "Nascom 2 (CP/M)", MACHINE_NO_SOUND_HW )