Starting on v1.21.2
This commit is contained in:
parent
4e7c765f7b
commit
6f79a84d83
176 changed files with 578 additions and 187 deletions
|
|
@ -1711,7 +1711,11 @@ Bus.prototype.reportError = function(op, addr, size, fQuiet)
|
|||
{
|
||||
var sError = "Memory block error (" + op + ": " + str.toHex(addr) + "," + str.toHex(size) + ")";
|
||||
if (fQuiet) {
|
||||
this.log(sError);
|
||||
if (this.dbg) {
|
||||
this.dbg.message(sError);
|
||||
} else {
|
||||
this.log(sError);
|
||||
}
|
||||
} else {
|
||||
Component.error(sError);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue