summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-25 08:22:24 +0100
commit0825ce4f3b8eaab42e3682f7d01d97ce6ea0416d (patch)
tree24de29ca8cbba68740ec8cd26f15209f19c2bf0b /src/devices/bus/rs232
parentd1d8a66ab196156ab22ba1059d714cd040b44ab6 (diff)
Cleanups and version bumpmame0168
Diffstat (limited to 'src/devices/bus/rs232')
-rw-r--r--src/devices/bus/rs232/keyboard.cpp4
-rw-r--r--src/devices/bus/rs232/null_modem.cpp2
-rw-r--r--src/devices/bus/rs232/pty.cpp2
-rw-r--r--src/devices/bus/rs232/rs232.cpp18
-rw-r--r--src/devices/bus/rs232/ser_mouse.cpp10
-rw-r--r--src/devices/bus/rs232/terminal.cpp4
-rw-r--r--src/devices/bus/rs232/xvd701.cpp4
7 files changed, 22 insertions, 22 deletions
diff --git a/src/devices/bus/rs232/keyboard.cpp b/src/devices/bus/rs232/keyboard.cpp
index 47b82c5d71e..af8cb01420b 100644
--- a/src/devices/bus/rs232/keyboard.cpp
+++ b/src/devices/bus/rs232/keyboard.cpp
@@ -5,7 +5,7 @@
serial_keyboard_device::serial_keyboard_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: generic_keyboard_device(mconfig, SERIAL_KEYBOARD, "Serial Keyboard", tag, owner, clock, "serial_keyboard", __FILE__),
device_serial_interface(mconfig, *this),
- device_rs232_port_interface(mconfig, *this),
+ device_rs232_port_interface(mconfig, *this),
m_curr_key(0),
m_key_valid(false),
m_rs232_txbaud(*this, "RS232_TXBAUD"),
@@ -19,7 +19,7 @@ serial_keyboard_device::serial_keyboard_device(const machine_config &mconfig, co
serial_keyboard_device::serial_keyboard_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)
: generic_keyboard_device(mconfig, type, name, tag, owner, clock, shortname, source),
device_serial_interface(mconfig, *this),
- device_rs232_port_interface(mconfig, *this),
+ device_rs232_port_interface(mconfig, *this),
m_curr_key(0),
m_key_valid(false),
m_rs232_txbaud(*this, "RS232_TXBAUD"),
diff --git a/src/devices/bus/rs232/null_modem.cpp b/src/devices/bus/rs232/null_modem.cpp
index a5140ef5d1e..e34cc1e7597 100644
--- a/src/devices/bus/rs232/null_modem.cpp
+++ b/src/devices/bus/rs232/null_modem.cpp
@@ -14,7 +14,7 @@ null_modem_device::null_modem_device(const machine_config &mconfig, const char *
m_rs232_parity(*this, "RS232_PARITY"),
m_rs232_stopbits(*this, "RS232_STOPBITS"),
m_input_count(0),
- m_input_index(0),
+ m_input_index(0),
m_timer_poll(NULL)
{
}
diff --git a/src/devices/bus/rs232/pty.cpp b/src/devices/bus/rs232/pty.cpp
index 72e8f22dd57..c239a7dced8 100644
--- a/src/devices/bus/rs232/pty.cpp
+++ b/src/devices/bus/rs232/pty.cpp
@@ -18,7 +18,7 @@ pseudo_terminal_device::pseudo_terminal_device(const machine_config &mconfig, co
m_rs232_parity(*this, "RS232_PARITY"),
m_rs232_stopbits(*this, "RS232_STOPBITS"),
m_input_count(0),
- m_input_index(0),
+ m_input_index(0),
m_timer_poll(NULL)
{
}
diff --git a/src/devices/bus/rs232/rs232.cpp b/src/devices/bus/rs232/rs232.cpp
index 06462491db7..4abceaff098 100644
--- a/src/devices/bus/rs232/rs232.cpp
+++ b/src/devices/bus/rs232/rs232.cpp
@@ -6,11 +6,11 @@ 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),
@@ -23,11 +23,11 @@ rs232_port_device::rs232_port_device(const machine_config &mconfig, const char *
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),
diff --git a/src/devices/bus/rs232/ser_mouse.cpp b/src/devices/bus/rs232/ser_mouse.cpp
index 53d035fee7e..ecf9414f1c9 100644
--- a/src/devices/bus/rs232/ser_mouse.cpp
+++ b/src/devices/bus/rs232/ser_mouse.cpp
@@ -16,11 +16,11 @@ serial_mouse_device::serial_mouse_device(const machine_config &mconfig, device_t
device_rs232_port_interface(mconfig, *this),
device_serial_interface(mconfig, *this),
m_dtr(1),
- m_rts(1),
- m_head(0),
- m_tail(0),
- m_mb(0),
- m_timer(nullptr),
+ m_rts(1),
+ m_head(0),
+ m_tail(0),
+ m_mb(0),
+ m_timer(nullptr),
m_enabled(false),
m_x(*this, "ser_mouse_x"),
m_y(*this, "ser_mouse_y"),
diff --git a/src/devices/bus/rs232/terminal.cpp b/src/devices/bus/rs232/terminal.cpp
index fcfd9074c67..c242184b387 100644
--- a/src/devices/bus/rs232/terminal.cpp
+++ b/src/devices/bus/rs232/terminal.cpp
@@ -11,8 +11,8 @@ serial_terminal_device::serial_terminal_device(const machine_config &mconfig, co
m_rs232_startbits(*this, "RS232_STARTBITS"),
m_rs232_databits(*this, "RS232_DATABITS"),
m_rs232_parity(*this, "RS232_PARITY"),
- m_rs232_stopbits(*this, "RS232_STOPBITS"),
- m_curr_key(0),
+ m_rs232_stopbits(*this, "RS232_STOPBITS"),
+ m_curr_key(0),
m_key_valid(false)
{
}
diff --git a/src/devices/bus/rs232/xvd701.cpp b/src/devices/bus/rs232/xvd701.cpp
index dd443d24ef1..9b032606ea8 100644
--- a/src/devices/bus/rs232/xvd701.cpp
+++ b/src/devices/bus/rs232/xvd701.cpp
@@ -5,8 +5,8 @@
jvc_xvd701_device::jvc_xvd701_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, JVC_XVD701, "JVC XV-D701", tag, owner, clock, "xvd701", __FILE__),
device_serial_interface(mconfig, *this),
- device_rs232_port_interface(mconfig, *this),
- m_response_index(0),
+ device_rs232_port_interface(mconfig, *this),
+ m_response_index(0),
m_timer_response(nullptr)
{
}