diff options
author | 2012-02-20 08:05:19 +0000 | |
---|---|---|
committer | 2012-02-20 08:05:19 +0000 | |
commit | f17ae85865444ea02ab35168980e1734d2623f59 (patch) | |
tree | e5527731b3e2fdcfc9ee8e62cd0f94885e8ab0d7 /src/emu/imagedev/bitbngr.c | |
parent | 1a4b927e369ef7c6a5bad7f986489272acf9b5a9 (diff) |
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)
Diffstat (limited to 'src/emu/imagedev/bitbngr.c')
-rw-r--r-- | src/emu/imagedev/bitbngr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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]); } |