summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/centronics/chessmec.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/centronics/chessmec.cpp')
-rw-r--r--src/devices/bus/centronics/chessmec.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/devices/bus/centronics/chessmec.cpp b/src/devices/bus/centronics/chessmec.cpp
index dc61831a42c..fb30a7253b7 100644
--- a/src/devices/bus/centronics/chessmec.cpp
+++ b/src/devices/bus/centronics/chessmec.cpp
@@ -2,7 +2,7 @@
// copyright-holders:hap
/*
-The ChessMachine EC by Tasc
+The ChessMachine EC by Tasc (LPT interface)
External module with ARM2 CPU, also sold under the Mephisto brand by H+G
see chessmachine_device for technical notes
@@ -13,7 +13,7 @@ see chessmachine_device for technical notes
#include "chessmec.h"
-DEFINE_DEVICE_TYPE(CENTRONICS_CHESSMEC, centronics_chessmec_device, "centronics_chessmec", "The ChessMachine EC")
+DEFINE_DEVICE_TYPE(CENTRONICS_CHESSMEC, centronics_chessmec_device, "centronics_chessmec", "Tasc ChessMachine EC Interface")
//-------------------------------------------------
// constructor
@@ -26,13 +26,11 @@ centronics_chessmec_device::centronics_chessmec_device(const machine_config &mco
{ }
-
//-------------------------------------------------
// device_add_mconfig - add device configuration
//-------------------------------------------------
void centronics_chessmec_device::device_add_mconfig(machine_config &config)
{
- CHESSMACHINE(config, m_chessm, 15'000'000);
- m_chessm->data_out().set(FUNC(centronics_chessmec_device::output_busy));
+ CHESSMACHINE(config, m_chessm, 15'000'000).data_out().set(FUNC(centronics_chessmec_device::output_busy));
}