bus::read word-read from odd i/o did not throw
This commit is contained in:
parent
2f69f287ef
commit
19a733be0d
1 changed files with 1 additions and 0 deletions
1
bus.cpp
1
bus.cpp
|
@ -157,6 +157,7 @@ uint16_t bus::read(const uint16_t a, const bool word_mode, const bool use_prev,
|
||||||
if ((a & 1) && word_mode == false) {
|
if ((a & 1) && word_mode == false) {
|
||||||
DOLOG(debug, true, "bus::readWord: odd address UNHANDLED %06o in i/o area", a);
|
DOLOG(debug, true, "bus::readWord: odd address UNHANDLED %06o in i/o area", a);
|
||||||
trap_odd(a);
|
trap_odd(a);
|
||||||
|
throw 0;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue