From f17ae85865444ea02ab35168980e1734d2623f59 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Mon, 20 Feb 2012 08:05:19 +0000 Subject: mc146818 - Set period even if timer is disabled, required for windows nt [Carl] diserial - added optinal rx and tx timers and callbacks [Carl] ins8250 - serial rx line high on start and fix for msr register [Carl] bitbanger - added 19200bps (no whatsnew) --- src/emu/imagedev/bitbngr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu/imagedev/bitbngr.c') diff --git a/src/emu/imagedev/bitbngr.c b/src/emu/imagedev/bitbngr.c index c57a2dda0ab..23ec4779caa 100644 --- a/src/emu/imagedev/bitbngr.c +++ b/src/emu/imagedev/bitbngr.c @@ -154,7 +154,7 @@ float bitbanger_device::tune_value(void) UINT32 bitbanger_device::baud_value(void) { static const float bauds[] = { 150.0f, 300.0f, 600.0f, 1200.0f, 2400.0f, 4800.0f, 9600.0f, - 14400.0f, 28800.0f, 38400.0f, 57600.0f, 115200.0f}; + 14400.0f, 19200.0f, 28800.0f, 38400.0f, 57600.0f, 115200.0f}; float result = tune_value() * bauds[m_baud]; return (UINT32)result; } @@ -167,7 +167,7 @@ UINT32 bitbanger_device::baud_value(void) const char *bitbanger_device::baud_string(void) { static const char *const bauds[] = { "150", "300", "600", "1200", "2400", "4800", - "9600", "14400", "28800", "38400", "57600", "115200"}; + "9600", "14400", "19200", "28800", "38400", "57600", "115200"}; return(bauds[m_baud]); } -- cgit v1.2.3-70-g09d2