diff options
author | 2013-05-20 13:50:06 +0000 | |
---|---|---|
committer | 2013-05-20 13:50:06 +0000 | |
commit | cd1d3d286ea817abf03d56366e3a1c134ac7053b (patch) | |
tree | 1f7e059f942365be8c5c81a6607b56053ae042a1 /src/mess/machine/s100_wunderbus.c | |
parent | 11430aac52bab2f3be61e088b6a29701c00933b9 (diff) |
mpz80: Fixed terminal. [Curt Coder]
Diffstat (limited to 'src/mess/machine/s100_wunderbus.c')
-rw-r--r-- | src/mess/machine/s100_wunderbus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/s100_wunderbus.c b/src/mess/machine/s100_wunderbus.c index f84a3b5ce32..4df290a5b8d 100644 --- a/src/mess/machine/s100_wunderbus.c +++ b/src/mess/machine/s100_wunderbus.c @@ -108,8 +108,8 @@ static ins8250_interface ace3_intf = //------------------------------------------------- static DEVICE_INPUT_DEFAULTS_START( terminal ) - DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x0f, 0x06 ) // 9600 - DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x30, 0x00 ) // 8N1 + DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x0f, 0x0d ) // 110 + DEVICE_INPUT_DEFAULTS( "TERM_FRAME", 0x30, 0x20 ) // 8N2 DEVICE_INPUT_DEFAULTS_END static const rs232_port_interface rs232a_intf = |