65oo2/vm/ata/ethernet.c

14 lines
197 B
C
Raw Normal View History

2024-02-29 12:01:58 +00:00
#include "ata.h"
static const uint8_t mac_addr[6] = {
2024-04-25 19:27:27 +00:00
0x53, 0x54, 0x41, 0x4C, 0x49, 0x4E
2024-02-29 12:01:58 +00:00
};
2024-04-25 19:27:27 +00:00
struct bus ethernet_device = {
"ethernet-dev",
{0x360, 0x36F},
NULL,
NULL,
NULL,
2024-02-29 12:01:58 +00:00
};