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:
10
sim_serial.c
10
sim_serial.c
@@ -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]);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user