mirror of
https://github.com/86Box/86Box.git
synced 2025-01-22 17:22:25 -05:00
G100 is now correctly added as AGP device
This commit is contained in:
parent
318403b133
commit
64c930f95f
1 changed files with 1 additions and 1 deletions
|
@ -6396,7 +6396,7 @@ mystique_init(const device_t *info)
|
|||
if (romfn == NULL)
|
||||
pci_add_card(PCI_ADD_VIDEO, mystique_pci_read, mystique_pci_write, mystique, &mystique->pci_slot);
|
||||
else
|
||||
pci_add_card(PCI_ADD_NORMAL, mystique_pci_read, mystique_pci_write, mystique, &mystique->pci_slot);
|
||||
pci_add_card((info->flags & DEVICE_AGP) ? PCI_ADD_AGP : PCI_ADD_NORMAL, mystique_pci_read, mystique_pci_write, mystique, &mystique->pci_slot);
|
||||
mystique->pci_regs[0x06] = 0x80;
|
||||
mystique->pci_regs[0x07] = 0 << 1;
|
||||
mystique->pci_regs[0x2c] = mystique->bios_rom.rom[0x7ff8];
|
||||
|
|
Loading…
Reference in a new issue