src/network

This commit is contained in:
Jasmine Iwanek
2022-03-13 09:50:25 -04:00
parent 438e05d100
commit d1dc795659
7 changed files with 220 additions and 135 deletions

View File

@@ -692,11 +692,15 @@ static const device_config_t threec503_config[] = {
};
const device_t threec503_device = {
"3Com EtherLink II",
"3c503",
DEVICE_ISA,
0,
threec503_nic_init, threec503_nic_close, NULL,
{ NULL }, NULL, NULL,
threec503_config
.name = "3Com EtherLink II",
.internal_name = "3c503",
.flags = DEVICE_ISA,
.local = 0,
.init = threec503_nic_init,
.close = threec503_nic_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = threec503_config
};