21 lines
309 B
C
21 lines
309 B
C
#include "ata.h"
|
|
#include "config.h"
|
|
#include "../bus.h"
|
|
|
|
static struct bus *devices = {
|
|
&rtc_device,
|
|
ðernet_device,
|
|
&serial3_device,
|
|
&serial2_device,
|
|
&serial1_device,
|
|
NULL,
|
|
};
|
|
|
|
|
|
struct bus isa_bus = {
|
|
"isa-mmio",
|
|
{0xFFFFF000, UINT32_MAX},
|
|
NULL,
|
|
NULL,
|
|
devices
|
|
}; |