Version changed to 1.07;

Added Intel Advanced/ZP;
Added Commodore PC 60 III;
Fixed Force 4:3 option when overscan is not enabled;
Added option to scale (0.5x, 1x, 1.5x, 2x) the video output;
Added ability to disable ATAPI DMA for CD-ROM drives;
Applied all mainline PCem commits;
Store network card in config file as name rather than number;
Fixed NVR storing for IBM PS/2 Models 2121 and 2121+ISA.
This commit is contained in:
OBattler
2017-03-14 00:38:25 +01:00
parent 9d33905d85
commit a57aa0ffcc
16 changed files with 223 additions and 40 deletions

View File

@@ -21,15 +21,16 @@ static int network_card_last = 0;
typedef struct
{
char name[32];
char name[64];
char internal_name[32];
device_t *device;
} NETWORK_CARD;
static NETWORK_CARD network_cards[] =
{
{"None", NULL},
{"Novell NE2000", &ne2000_device},
{"Realtek RTL8029AS", &rtl8029as_device},
{"None", "none", NULL},
{"Novell NE2000", "ne2k", &ne2000_device},
{"Realtek RTL8029AS", "ne2kpci", &rtl8029as_device},
{"", NULL}
};
@@ -58,6 +59,25 @@ int network_card_has_config(int card)
return network_cards[card].device->config ? 1 : 0;
}
char *network_card_get_internal_name(int card)
{
return network_cards[card].internal_name;
}
int network_card_get_from_internal_name(char *s)
{
int c = 0;
while (strlen(network_cards[c].internal_name))
{
if (!strcmp(network_cards[c].internal_name, s))
return c;
c++;
}
return 0;
}
void network_card_init()
{
if (network_cards[network_card_current].device)