Corrected PCI IRQ mapping on Packard Bell PB570.
This commit is contained in:
parent
ff03442e76
commit
445cf601e8
1 changed files with 14 additions and 1 deletions
15
src/model.c
15
src/model.c
|
|
@ -101,6 +101,7 @@ void xt_t1200_init();
|
|||
void at_sl82c460_init();
|
||||
void at_zappa_init();
|
||||
void at_pb520r_init();
|
||||
void at_pb570_init();
|
||||
int model;
|
||||
|
||||
int AMSTRAD, AT, PCI, TANDY;
|
||||
|
|
@ -176,7 +177,7 @@ MODEL models[] =
|
|||
|
||||
{"[Socket 5] Intel Advanced/EV", ROM_ENDEAVOR, "endeavor", { {"Intel", cpus_PentiumS5}, {"IDT", cpus_WinChip}, {"Cyrix", cpus_6x86}}, 0, MODEL_AT|MODEL_PCI|MODEL_PS2|MODEL_HAS_IDE, 1, 128, 1, at_endeavor_init, NULL},
|
||||
{"[Socket 5] Intel Advanced/ZP", ROM_ZAPPA, "zappa", { {"Intel", cpus_PentiumS5}, {"IDT", cpus_WinChip}, {"Cyrix", cpus_6x86}}, 0, MODEL_AT|MODEL_PCI|MODEL_PS2|MODEL_HAS_IDE, 1, 128, 1, at_zappa_init, NULL},
|
||||
{"[Socket 5] Packard Bell PB570", ROM_PB570, "pb570", { {"Intel", cpus_PentiumS5}, {"IDT", cpus_WinChip}, {"Cyrix", cpus_6x86}}, 1, MODEL_AT|MODEL_PCI|MODEL_PS2|MODEL_HAS_IDE, 1, 128, 1, at_endeavor_init, NULL},
|
||||
{"[Socket 5] Packard Bell PB570", ROM_PB570, "pb570", { {"Intel", cpus_PentiumS5}, {"IDT", cpus_WinChip}, {"Cyrix", cpus_6x86}}, 1, MODEL_AT|MODEL_PCI|MODEL_PS2|MODEL_HAS_IDE, 1, 128, 1, at_pb570_init, NULL},
|
||||
|
||||
{"[Socket 7] Award 430VX PCI", ROM_430VX, "430vx", { {"Intel", cpus_Pentium}, {"IDT", cpus_WinChip}, {"Cyrix", cpus_6x86}}, 0, MODEL_AT|MODEL_PCI|MODEL_PS2|MODEL_HAS_IDE, 1, 256, 1, at_i430vx_init, NULL},
|
||||
|
||||
|
|
@ -568,6 +569,18 @@ void at_endeavor_init()
|
|||
intel_endeavor_init();
|
||||
device_add(&intel_flash_bxt_ami_device);
|
||||
}
|
||||
void at_pb570_init()
|
||||
{
|
||||
at_init();
|
||||
pci_init(PCI_CONFIG_TYPE_1);
|
||||
pci_slot(0x11);
|
||||
pci_slot(0x13);
|
||||
i430fx_init();
|
||||
piix_init(7, 0x11, 0x13, 0xb, 0x8);
|
||||
pc87306_init(0x2e);
|
||||
intel_endeavor_init();
|
||||
device_add(&intel_flash_bxt_ami_device);
|
||||
}
|
||||
void at_zappa_init()
|
||||
{
|
||||
at_init();
|
||||
|
|
|
|||
Loading…
Reference in a new issue