mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-26 08:49:37 +00:00
Fixed clanger of an error.
This commit is contained in:
parent
360c8a99a3
commit
3c148f5721
@ -20,7 +20,7 @@ class Unpaged: public BusExtender {
|
|||||||
|
|
||||||
void perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
void perform_bus_operation(CPU::MOS6502::BusOperation operation, uint16_t address, uint8_t *value) {
|
||||||
if(isReadOperation(operation) && (address & 0x1000)) {
|
if(isReadOperation(operation) && (address & 0x1000)) {
|
||||||
*value = rom_base_[address] & (rom_size_ - 1);
|
*value = rom_base_[address & (rom_size_ - 1)];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user