for some reason unixv5 wants to write a word to the system id i/o address
This commit is contained in:
parent
9eb9254c6e
commit
0fd4a70600
1 changed files with 3 additions and 0 deletions
3
bus.cpp
3
bus.cpp
|
@ -867,6 +867,9 @@ void bus::write(const uint16_t a, const bool word_mode, uint16_t value, const bo
|
|||
if (a == ADDR_SYSSIZE || a == ADDR_SYSSIZE + 2) // system size (is read-only)
|
||||
return;
|
||||
|
||||
if (a == ADDR_SYSTEM_ID) // is r/o
|
||||
return;
|
||||
|
||||
///////////
|
||||
|
||||
DOLOG(debug, true, "UNHANDLED write %o(%c): %o", a, word_mode ? 'B' : 'W', value);
|
||||
|
|
Loading…
Add table
Reference in a new issue