Merge remote-tracking branch 'upstream/master' into 64-bit-BARs

This commit is contained in:
joevt 2023-02-02 21:14:05 -08:00
commit 8862a73ef1
1 changed files with 2 additions and 2 deletions

View File

@ -91,11 +91,11 @@ uint32_t MPC106::read(uint32_t rgn_start, uint32_t offset, int size) {
if (offset >= 0x200000) {
if (this->config_addr & 0x80) // process only if bit E (enable) is set
return pci_read(offset, size);
} else {
return this->config_addr;
}
}
// FIXME: reading from CONFIG_ADDR is ignored for now
return 0;
}