65oo2/vm/ata/ethernet.c

15 lines
185 B
C
Raw Normal View History

2024-02-25 15:58:08 +00:00
#include "isa.h"
static const uint8_t mac_addr[6] = {
0x53, 0x54, 0x41, 0x4C, 0x49, 0x4E
};
AtaDevice ethernet_dev = {
"TinyEthernet",
0x360,
0x36F,
NULL,
NULL,
NULL
};