Better ACPI implementation (currently only on PIIX4/PIIX4E/SMSC southbridges), finished the SMSC southbridge (but the Atrend BIOS still hangs, need to figure out why), and fixed Tandy EEPROM saving.
This commit is contained in:
@@ -97,7 +97,7 @@ machine_at_p2bls_init(const machine_t *model)
|
||||
device_add(&i440bx_device);
|
||||
device_add(&piix4e_device);
|
||||
device_add(&keyboard_ps2_pci_device);
|
||||
device_add(&w83977ef_device);
|
||||
// device_add(&w83977ef_device);
|
||||
device_add(&sst_flash_39sf020_device);
|
||||
spd_register(SPD_TYPE_SDRAM, 0xF, 256);
|
||||
|
||||
|
||||
@@ -1309,7 +1309,7 @@ eep_close(void *priv)
|
||||
t1keep_t *eep = (t1keep_t *)priv;
|
||||
FILE *f = NULL;
|
||||
|
||||
f = nvr_fopen(eep->path, L"rb");
|
||||
f = nvr_fopen(eep->path, L"wb");
|
||||
if (f != NULL) {
|
||||
(void)fwrite(eep->store, 128, 1, f);
|
||||
(void)fclose(f);
|
||||
|
||||
Reference in New Issue
Block a user