Starting on v1.21.2

This commit is contained in:
Jeff Parsons 2016-03-14 08:53:07 -07:00
commit 6f79a84d83
176 changed files with 578 additions and 187 deletions

View file

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