summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/exp85.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2014-01-08 20:46:12 +0000
committer smf- <smf-@users.noreply.github.com>2014-01-08 20:46:12 +0000
commit1ec3795d20a478ebc767c7d4e0461717bddc1437 (patch)
tree7a6c642714d02ca018ba3cc007aed7be4f07096a /src/mess/drivers/exp85.c
parent24f13a9d4c5afa18c31451f7c2424c414c4465a9 (diff)
Changed serial terminal to use separate data bits/parity and stop bit settings to allow more diversity.
Diffstat (limited to 'src/mess/drivers/exp85.c')
-rw-r--r--src/mess/drivers/exp85.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mess/drivers/exp85.c b/src/mess/drivers/exp85.c
index bb134860a03..07b6351242b 100644
--- a/src/mess/drivers/exp85.c
+++ b/src/mess/drivers/exp85.c
@@ -176,8 +176,10 @@ WRITE_LINE_MEMBER( exp85_state::sod_w )
/* Terminal Interface */
static DEVICE_INPUT_DEFAULTS_START( terminal )
- DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x0f, 0x06 ) // 9600
- DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x30, 0x10 ) // 7E1
+ DEVICE_INPUT_DEFAULTS( "TERM_BAUD", 0xff, 0x06 ) // 9600
+ DEVICE_INPUT_DEFAULTS( "TERM_DATABITS", 0xff, 0x02 ) // 7
+ DEVICE_INPUT_DEFAULTS( "TERM_PARITY", 0xff, 0x02 ) // E
+ DEVICE_INPUT_DEFAULTS( "TERM_STOPBITS", 0xff, 0x00 ) // 1
DEVICE_INPUT_DEFAULTS_END
static const serial_terminal_interface terminal_intf =