BusLogic base address is now read from the correct configuration variable.

This commit is contained in:
OBattler
2017-06-05 01:36:39 +02:00
parent 07e72f72ef
commit 0347b6d46b

View File

@@ -2243,7 +2243,7 @@ BuslogicInit(int chip)
chip = CHIP_BUSLOGIC_ISA; chip = CHIP_BUSLOGIC_ISA;
} }
bl->chip = chip; bl->chip = chip;
bl->Base = device_get_config_hex16("addr"); bl->Base = device_get_config_hex16("base");
bl->PCIBase = 0; bl->PCIBase = 0;
bl->MMIOBase = 0; bl->MMIOBase = 0;
bl->Irq = device_get_config_int("irq"); bl->Irq = device_get_config_int("irq");