65oo2/vm/ata/serial.c

26 lines
294 B
C
Raw Permalink Normal View History

2024-02-25 15:58:08 +00:00
#include "ata.h"
2024-04-25 19:27:27 +00:00
struct bus serial3_device = {
"serial3-dev",
{0x3E0, 0x3EF},
NULL,
2024-02-25 15:58:08 +00:00
NULL,
NULL
};
2024-04-25 19:27:27 +00:00
struct bus serial2_device = {
"serial2-dev",
{0x02F8, 0x2FF},
2024-02-25 15:58:08 +00:00
NULL,
NULL,
2024-04-25 19:27:27 +00:00
NULL
2024-02-25 15:58:08 +00:00
};
2024-04-25 19:27:27 +00:00
struct bus serial1_device = {
"serial1-dev",
{0x3F8, 0x3FF},
2024-02-25 15:58:08 +00:00
NULL,
NULL,
2024-04-25 19:27:27 +00:00
NULL
2024-02-25 15:58:08 +00:00
};