Acer V60N and V62X: Tell the DRB filler the slot limits to avoid unsupported DRAM row combinations, fixes black screen on PCI graphics cards on some RAM sizes.

This commit is contained in:
OBattler
2025-05-06 19:08:16 +02:00
parent 8508a04825
commit 0c97a1f7f6
2 changed files with 2 additions and 0 deletions

View File

@@ -65,6 +65,7 @@ machine_at_acerv62x_init(const machine_t *model)
device_add(&piix3_device);
device_add_params(&fdc37c93x_device, (void *) (FDC37C935 | FDC37C93X_APM));
device_add(&sst_flash_29ee020_device);
spd_register(SPD_TYPE_SDRAM, 0x7, 128);
return ret;
}

View File

@@ -190,6 +190,7 @@ machine_at_acerv60n_init(const machine_t *model)
device_add(&piix3_device);
device_add_params(&fdc37c93x_device, (void *) (FDC37C935 | FDC37C93X_NORMAL));
device_add(&sst_flash_29ee010_device);
spd_register(SPD_TYPE_SDRAM, 0x7, 128);
return ret;
}