summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-10-23 10:27:46 -0400
committer GitHub <noreply@github.com>2019-10-23 10:27:46 -0400
commitf6735953003746bacca12bbe7b601ef18692c922 (patch)
tree78e252acb11d08d7f18683ffd85d18996af0d5db /src/devices/machine
parent606a96b3c5d2ada214d4973e7d16e19696d46795 (diff)
parent837948afbd47b7813c90e767923225e86f702c55 (diff)
Merge pull request #5781 from 68bit/ie15-r232-resolve-all
ie15: resolve all rs232 handlers, even unused
Diffstat (limited to 'src/devices/machine')
-rw-r--r--src/devices/machine/ie15.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/ie15.cpp b/src/devices/machine/ie15.cpp
index 851c06e2872..802d92b6eff 100644
--- a/src/devices/machine/ie15.cpp
+++ b/src/devices/machine/ie15.cpp
@@ -458,8 +458,8 @@ WRITE16_MEMBER( ie15_device::kbd_put )
void ie15_device::device_resolve_objects()
{
- //m_rs232_conn_dtr_handler.resolve_safe();
- //m_rs232_conn_rts_handler.resolve_safe();
+ m_rs232_conn_dtr_handler.resolve_safe();
+ m_rs232_conn_rts_handler.resolve_safe();
m_rs232_conn_txd_handler.resolve_safe();
}