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

14 lines
197 B
C

#include "ata.h"
static const uint8_t mac_addr[6] = {
0x53, 0x54, 0x41, 0x4C, 0x49, 0x4E
};
struct bus ethernet_device = {
"ethernet-dev",
{0x360, 0x36F},
NULL,
NULL,
NULL,
};