65oo2/vm/ata/ata.c

21 lines
309 B
C
Raw Permalink Normal View History

2024-02-25 15:58:08 +00:00
#include "ata.h"
#include "config.h"
2024-04-25 19:27:27 +00:00
#include "../bus.h"
2024-02-25 15:58:08 +00:00
2024-04-25 19:27:27 +00:00
static struct bus *devices = {
&rtc_device,
&ethernet_device,
&serial3_device,
&serial2_device,
&serial1_device,
NULL,
2024-02-25 15:58:08 +00:00
};
2024-04-25 19:27:27 +00:00
struct bus isa_bus = {
"isa-mmio",
{0xFFFFF000, UINT32_MAX},
NULL,
NULL,
devices
};