summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232/rs232.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/rs232/rs232.cpp')
-rw-r--r--src/devices/bus/rs232/rs232.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/bus/rs232/rs232.cpp b/src/devices/bus/rs232/rs232.cpp
index 06462491db7..31d6310e2ad 100644
--- a/src/devices/bus/rs232/rs232.cpp
+++ b/src/devices/bus/rs232/rs232.cpp
@@ -6,35 +6,35 @@ const device_type RS232_PORT = &device_creator<rs232_port_device>;
rs232_port_device::rs232_port_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
device_t(mconfig, RS232_PORT, "RS232 Port", tag, owner, clock, "rs232", __FILE__),
- device_slot_interface(mconfig, *this),
- m_rxd(0),
- m_dcd(0),
- m_dsr(0),
- m_ri(0),
+ device_slot_interface(mconfig, *this),
+ m_rxd(0),
+ m_dcd(0),
+ m_dsr(0),
+ m_ri(0),
m_cts(0),
m_rxd_handler(*this),
m_dcd_handler(*this),
m_dsr_handler(*this),
m_ri_handler(*this),
m_cts_handler(*this),
- m_dev(NULL)
+ m_dev(nullptr)
{
}
rs232_port_device::rs232_port_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source)
: device_t(mconfig, type, name, tag, owner, clock, shortname, source),
- device_slot_interface(mconfig, *this),
+ device_slot_interface(mconfig, *this),
m_rxd(0),
- m_dcd(0),
- m_dsr(0),
- m_ri(0),
+ m_dcd(0),
+ m_dsr(0),
+ m_ri(0),
m_cts(0),
m_rxd_handler(*this),
m_dcd_handler(*this),
m_dsr_handler(*this),
m_ri_handler(*this),
m_cts_handler(*this),
- m_dev(NULL)
+ m_dev(nullptr)
{
}