summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rs232
diff options
context:
space:
mode:
author fulivi <fulivi@users.noreply.github.com>2015-10-07 17:43:36 +0200
committer fulivi <fulivi@users.noreply.github.com>2015-10-13 12:00:52 +0200
commitf8cb153519db6979e32f1d55b496db6a9ce5df6e (patch)
treefdcc3e5f5107e51abc4cfa06b064a205b6627e71 /src/devices/bus/rs232
parent8e4ced4b531ac52fb764d9374a7c215bc62a890a (diff)
pty: first step of pseudo terminal implementation
Conflicts: scripts/src/bus.lua
Diffstat (limited to 'src/devices/bus/rs232')
-rw-r--r--src/devices/bus/rs232/rs232.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/devices/bus/rs232/rs232.c b/src/devices/bus/rs232/rs232.c
index acc1af5dea3..cb2d1771a6e 100644
--- a/src/devices/bus/rs232/rs232.c
+++ b/src/devices/bus/rs232/rs232.c
@@ -103,6 +103,7 @@ device_rs232_port_interface::~device_rs232_port_interface()
#include "null_modem.h"
#include "printer.h"
#include "terminal.h"
+#include "pty.h"
SLOT_INTERFACE_START( default_rs232_devices )
SLOT_INTERFACE("keyboard", SERIAL_KEYBOARD)
@@ -110,4 +111,5 @@ SLOT_INTERFACE_START( default_rs232_devices )
SLOT_INTERFACE("null_modem", NULL_MODEM)
SLOT_INTERFACE("printer", SERIAL_PRINTER)
SLOT_INTERFACE("terminal", SERIAL_TERMINAL)
+ SLOT_INTERFACE("pty", PSEUDO_TERMINAL)
SLOT_INTERFACE_END