mirror of
https://github.com/cc65/cc65.git
synced 2024-12-31 11:32:00 +00:00
Allow choosing 115200bps as the card allows it
Of course, that won't work full speed with the standard IRQ-based RX. But that will allow users to setup the port at this speed without duplicating the setup part of the code. Up to them to add hooks to disable IRQs and read directly in a tight asm loop.
This commit is contained in:
parent
4bde3afd80
commit
7a12399b39
@ -121,7 +121,7 @@ BaudTable: ; Table used to translate RS232 baudrate param
|
||||
.byte $0F ; SER_BAUD_19200
|
||||
.byte $FF ; SER_BAUD_38400
|
||||
.byte $FF ; SER_BAUD_57600
|
||||
.byte $FF ; SER_BAUD_115200
|
||||
.byte $00 ; SER_BAUD_115200
|
||||
.byte $FF ; SER_BAUD_230400
|
||||
|
||||
BitTable: ; Table used to translate RS232 databits param
|
||||
|
Loading…
Reference in New Issue
Block a user