mirror of
https://github.com/sethm/symon.git
synced 2025-03-13 13:30:37 +00:00
Fix comment: The 6551 baud rate is in the lower *four* bits.
The code is correct, the comment is wrong.
This commit is contained in:
parent
9351d785ae
commit
b725fb5fdd
@ -116,7 +116,7 @@ public class Acia6551 extends Acia {
|
||||
if (data == 0) {
|
||||
reset();
|
||||
} else {
|
||||
// Mask the lower three bits to get the baud rate.
|
||||
// Mask the lower four bits to get the baud rate.
|
||||
int baudSelector = data & 0x0f;
|
||||
switch (baudSelector) {
|
||||
case 0:
|
||||
|
Loading…
x
Reference in New Issue
Block a user