From 25b4c1b76d1cf0b2167c0987921e080dec5f898c Mon Sep 17 00:00:00 2001 From: OBattler Date: Wed, 18 Nov 2020 00:49:39 +0100 Subject: [PATCH] The Intel AN430TX now loads the boot block as well (but still does not work). --- src/machine/m_at_socket7.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/machine/m_at_socket7.c b/src/machine/m_at_socket7.c index af7016e8f..3a902855e 100644 --- a/src/machine/m_at_socket7.c +++ b/src/machine/m_at_socket7.c @@ -913,7 +913,7 @@ machine_at_an430tx_init(const machine_t *model) L"roms/machines/an430tx/P10-0095.BI1", L"roms/machines/an430tx/P10-0095.BI2", L"roms/machines/an430tx/P10-0095.BI3", - NULL, + L"roms/machines/an430tx/P10-0095.RCV", 0x3a000, 160); if (bios_only || !ret) @@ -924,11 +924,11 @@ machine_at_an430tx_init(const machine_t *model) pci_init(PCI_CONFIG_TYPE_1); pci_register_slot(0x00, PCI_CARD_NORTHBRIDGE, 0, 0, 0, 0); pci_register_slot(0x07, PCI_CARD_SOUTHBRIDGE, 1, 2, 3, 4); /* PIIX4 */ + pci_register_slot(0x08, PCI_CARD_VIDEO, 4, 0, 0, 0); pci_register_slot(0x0D, PCI_CARD_NORMAL, 1, 2, 3, 4); pci_register_slot(0x0E, PCI_CARD_NORMAL, 2, 3, 4, 1); pci_register_slot(0x0F, PCI_CARD_NORMAL, 3, 4, 1, 2); pci_register_slot(0x10, PCI_CARD_NORMAL, 4, 1, 2, 3); - pci_register_slot(0x08, PCI_CARD_VIDEO, 4, 0, 0, 0); device_add(&i430tx_device); device_add(&piix4_device); device_add(&keyboard_ps2_ami_pci_device);