1// SPDX-License-Identifier: GPL-3.0-or-later
2
3#pragma once
4
5#include "mos/device/serial.h"
6
7typedef enum
8{
9 COM1 = 0x3F8,
10 COM2 = 0x2F8,
11 COM3 = 0x3E8,
12 COM4 = 0x2E8,
13 COM5 = 0x5F8,
14 COM6 = 0x4F8,
15 COM7 = 0x5E8,
16 COM8 = 0x4E8
17} x86_com_port_t;
18
19extern const serial_driver_t x86_serial_driver;
20