summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author 68bit <info@68bit.org>2019-11-03 20:26:51 +1100
committer Vas Crabb <cuavas@users.noreply.github.com>2019-11-04 00:51:05 +1100
commit36c17abc7993de82454ac45d7193ae6e6f2f9455 (patch)
tree7c201d37e016cb16e25e83894630173abe98c5f7 /src/devices/bus
parent6888ed6d77a6d271849224717db60fd3d2c4e3c5 (diff)
Avoid some redundant PORT_CHANGED_MEMBER uses.
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/rs232/swtpc8212.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/rs232/swtpc8212.cpp b/src/devices/bus/rs232/swtpc8212.cpp
index ea48a2cecf8..b7265aea5d5 100644
--- a/src/devices/bus/rs232/swtpc8212.cpp
+++ b/src/devices/bus/rs232/swtpc8212.cpp
@@ -23,9 +23,9 @@ void swtpc8212_terminal_device::device_add_mconfig(machine_config &config)
INPUT_PORTS_START(swtpc8212_terminal)
PORT_START("FLOW_CONTROL")
- PORT_CONFNAME(0x1, 1, "Flow control")
- PORT_CONFSETTING(0x00, "None") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0)
- PORT_CONFSETTING(0x01, "Terminal DTR to remote CTS") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0)
+ PORT_CONFNAME(0x1, 1, "Flow control") PORT_CHANGED_MEMBER(DEVICE_SELF, swtpc8212_terminal_device, flow_control, 0)
+ PORT_CONFSETTING(0x00, "None")
+ PORT_CONFSETTING(0x01, "Terminal DTR to remote CTS")
INPUT_PORTS_END