65oo2/vm/ata/serial.c
2024-04-25 21:27:27 +02:00

26 lines
294 B
C

#include "ata.h"
struct bus serial3_device = {
"serial3-dev",
{0x3E0, 0x3EF},
NULL,
NULL,
NULL
};
struct bus serial2_device = {
"serial2-dev",
{0x02F8, 0x2FF},
NULL,
NULL,
NULL
};
struct bus serial1_device = {
"serial1-dev",
{0x3F8, 0x3FF},
NULL,
NULL,
NULL
};