diff options
Diffstat (limited to 'src/mess/drivers/xor100.c')
-rw-r--r-- | src/mess/drivers/xor100.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mess/drivers/xor100.c b/src/mess/drivers/xor100.c index c7d6aa7c9c2..ff4df5d7729 100644 --- a/src/mess/drivers/xor100.c +++ b/src/mess/drivers/xor100.c @@ -496,8 +496,10 @@ void xor100_state::fdc_drq_w(bool state) 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_BAUD", 0xff, 0x06 ) // 9600 + DEVICE_INPUT_DEFAULTS( "TERM_DATABITS", 0xff, 0x03 ) // 8 + DEVICE_INPUT_DEFAULTS( "TERM_PARITY", 0xff, 0x00 ) // N + DEVICE_INPUT_DEFAULTS( "TERM_STOPBITS", 0xff, 0x00 ) // 1 DEVICE_INPUT_DEFAULTS_END |