summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/abc890.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/abc890.c')
-rw-r--r--src/mess/machine/abc890.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mess/machine/abc890.c b/src/mess/machine/abc890.c
index fe41a537b88..9598664c8e4 100644
--- a/src/mess/machine/abc890.c
+++ b/src/mess/machine/abc890.c
@@ -137,26 +137,26 @@ machine_config_constructor abc850_device::device_mconfig_additions() const
//-------------------------------------------------
abc890_device::abc890_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, type, name, tag, owner, clock),
- device_abcbus_card_interface(mconfig, *this)
+ : device_t(mconfig, type, name, tag, owner, clock),
+ device_abcbus_card_interface(mconfig, *this)
{
}
abc890_device::abc890_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, ABC890, "ABC 890", tag, owner, clock),
- device_abcbus_card_interface(mconfig, *this),
- m_slots(7)
+ : device_t(mconfig, ABC890, "ABC 890", tag, owner, clock),
+ device_abcbus_card_interface(mconfig, *this),
+ m_slots(7)
{
}
abc894_device::abc894_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : abc890_device(mconfig, ABC894, "ABC 894", tag, owner, clock)
+ : abc890_device(mconfig, ABC894, "ABC 894", tag, owner, clock)
{
m_slots = 3;
}
abc850_device::abc850_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : abc890_device(mconfig, ABC850, "ABC 850", tag, owner, clock)
+ : abc890_device(mconfig, ABC850, "ABC 850", tag, owner, clock)
{
m_slots = 7;
}