mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 13:35:47 +00:00
[CPORTLIB][NTOS:INBV][KDCOM][FREELDR] Add ComPort library for NEC PC-98 series (#2407)
There are 2 known serial ports: COM1 - based on Intel 8251A COM2 - National Semiconductor 16550
This commit is contained in:
parent
a6515e2b75
commit
222e79232c
12 changed files with 1104 additions and 1 deletions
|
@ -21,7 +21,11 @@
|
|||
#define DEFAULT_BAUD_RATE 19200
|
||||
|
||||
#if defined(_M_IX86) || defined(_M_AMD64)
|
||||
#if defined(SARCH_PC98)
|
||||
const ULONG BaseArray[] = {0, 0x30, 0x238};
|
||||
#else
|
||||
const ULONG BaseArray[] = {0, 0x3F8, 0x2F8, 0x3E8, 0x2E8};
|
||||
#endif
|
||||
#elif defined(_M_PPC)
|
||||
const ULONG BaseArray[] = {0, 0x800003F8};
|
||||
#elif defined(_M_MIPS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue