always clear MMR3 bit 5 as unibus mapping is not implemented yet
This commit is contained in:
parent
9930dd6fc8
commit
d8912d66f4
1 changed files with 1 additions and 1 deletions
2
bus.cpp
2
bus.cpp
|
@ -690,7 +690,7 @@ void bus::write(const uint16_t a, const bool word_mode, uint16_t value, const bo
|
|||
|
||||
if (a == ADDR_MMR3) { // MMR3
|
||||
DOLOG(debug, true, "write set MMR3: %o", value);
|
||||
MMR3 = value & 067;
|
||||
MMR3 = value & 047; // bit5: enable "unibus mapping" (not implemented TODO)
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue