comments
This commit is contained in:
parent
0483dc1080
commit
16e78b9417
1 changed files with 1 additions and 1 deletions
2
bus.cpp
2
bus.cpp
|
@ -599,7 +599,7 @@ uint32_t bus::calculate_physical_address(const int run_mode, const uint16_t a, c
|
|||
{
|
||||
uint32_t m_offset = a;
|
||||
|
||||
if ((MMR0 & 1) || (is_write && (MMR0 & (1 << 8)))) {
|
||||
if ((MMR0 & 1 /* mmu enabled */) || (is_write && (MMR0 & (1 << 8 /* maintenance check */)))) {
|
||||
const uint8_t apf = a >> 13; // active page field
|
||||
|
||||
bool d = space == d_space && get_use_data_space(run_mode) ? space == d_space : false;
|
||||
|
|
Loading…
Add table
Reference in a new issue