EKBE complains when unibus mapping-bit is masked off
This commit is contained in:
parent
9fc748e7e5
commit
82da553c94
1 changed files with 1 additions and 1 deletions
2
bus.cpp
2
bus.cpp
|
@ -774,7 +774,7 @@ void bus::write(const uint16_t a, const bool word_mode, uint16_t value, const bo
|
||||||
|
|
||||||
if (a == ADDR_MMR3) { // MMR3
|
if (a == ADDR_MMR3) { // MMR3
|
||||||
DOLOG(debug, true, "write set MMR3: %o", value);
|
DOLOG(debug, true, "write set MMR3: %o", value);
|
||||||
MMR3 = value & 047; // bit5: enable "unibus mapping" (not implemented TODO)
|
MMR3 = value & 067;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue