mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Eepro100 emulation, by Stefan Weil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2584 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
f0c757e431
commit
663e8e5164
6 changed files with 2088 additions and 1 deletions
6
hw/pci.c
6
hw/pci.c
|
@ -548,6 +548,12 @@ void pci_nic_init(PCIBus *bus, NICInfo *nd, int devfn)
|
|||
{
|
||||
if (strcmp(nd->model, "ne2k_pci") == 0) {
|
||||
pci_ne2000_init(bus, nd, devfn);
|
||||
} else if (strcmp(nd->model, "i82551") == 0) {
|
||||
pci_i82551_init(bus, nd, devfn);
|
||||
} else if (strcmp(nd->model, "i82557b") == 0) {
|
||||
pci_i82557b_init(bus, nd, devfn);
|
||||
} else if (strcmp(nd->model, "i82559er") == 0) {
|
||||
pci_i82559er_init(bus, nd, devfn);
|
||||
} else if (strcmp(nd->model, "rtl8139") == 0) {
|
||||
pci_rtl8139_init(bus, nd, devfn);
|
||||
} else if (strcmp(nd->model, "pcnet") == 0) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue