diff options
| author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2002-02-01 14:48:44 +0000 |
|---|---|---|
| committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2002-02-01 14:48:44 +0000 |
| commit | 3b8a3187c8b8bf96be40c5dccfe4f51074aa494c (patch) | |
| tree | 64fdfdebf37c33987091e7552cfbbead737d905b | |
| parent | 9c12d8bc48bbe0a8df4e5fff733a3a574849f4bf (diff) | |
Notes
| -rw-r--r-- | sys/boot/pc98/boot2/serial_16550.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/pc98/boot2/serial_16550.S b/sys/boot/pc98/boot2/serial_16550.S index ba0a3612ad44..7512db494c76 100644 --- a/sys/boot/pc98/boot2/serial_16550.S +++ b/sys/boot/pc98/boot2/serial_16550.S @@ -151,10 +151,10 @@ ENTRY(init_serial) outb %al, %dx # enable DLAB subl $3, %edx # divisor latch, low byte - movb $COMBRD(CONSPEED) & 0xff, %al + movb (1843200 / (16*(CONSPEED))) & 0xff, %al outb %al, %dx incl %edx # divisor latch, high byte - movb $COMBRD(CONSPEED) >> 8, %al + movb (1843200 / (16*(CONSPEED))) >> 8, %al outb %al, %dx incl %edx # fifo control register (if any) |
