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:
Tim Allen 2023-05-29 18:29:51 +10:00 committed by Seth Morabito
parent 9351d785ae
commit b725fb5fdd
1 changed files with 1 additions and 1 deletions

View File

@ -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: