1
0
mirror of https://github.com/simh/simh.git synced 2026-05-16 02:02:15 +00:00

TMXR: Add serial line speed 230400 bps and missing 76800 bps on *nix

This commit is contained in:
Mark Pizzolato
2026-03-08 15:17:52 -10:00
parent ba89e0a468
commit 45b804e947
3 changed files with 11 additions and 1 deletions

View File

@@ -1160,7 +1160,15 @@ static const struct {
{ 150, B150 }, { 200, B200 }, { 300, B300 }, { 600, B600 },
{ 1200, B1200 }, { 1800, B1800 }, { 2400, B2400 }, { 4800, B4800 },
{ 9600, B9600 }, { 19200, B19200 }, { 38400, B38400 }, { 57600, B57600 },
{ 115200, B115200 } };
#if defined (B76800)
{ 76800, B76800 },
#endif
{ 115200, B115200 }
#if defined (B230400)
,
{ 230400, B230400 }
#endif
};
static const int32 baud_count = sizeof (baud_map) / sizeof (baud_map [0]);