EKBE complains when unibus mapping-bit is masked off

This commit is contained in:
folkert van heusden 2023-03-23 20:11:55 +01:00
parent 9fc748e7e5
commit 82da553c94
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -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;
} }