Fix another bogus inspection

This commit is contained in:
Jeff Parsons 2017-02-04 15:53:32 -08:00 committed by Jeff Parsons
commit 9e517701d1
2 changed files with 2 additions and 1 deletions

View file

@ -2870,6 +2870,7 @@ class CPUStatePDP11 extends CPUPDP11 {
data = (data < 0? (this.regsGen[-data-1] & 0xff): data);
this.regsGen[reg] = (this.regsGen[reg] & ~writeFlags) | (((data << 24) >> 24) & writeFlags);
}
//noinspection JSUnresolvedFunction
fnFlags.call(this, data << 8);
} else {
var addr = this.getAddr(mode, reg, PDP11.ACCESS.WRITE_BYTE);