Made DEBUG-only code, um, DEBUG-only
This commit is contained in:
parent
3466426d70
commit
f5cd98a7e6
1 changed files with 2 additions and 2 deletions
|
|
@ -3376,7 +3376,7 @@ X86.fnVERR = function VERR(dst, src)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.clearZF();
|
this.clearZF();
|
||||||
if (this.sizeData > 2 || this.sizeAddr > 2) this.stopCPU();
|
if (DEBUG && (this.sizeData > 2 || this.sizeAddr > 2)) this.stopCPU();
|
||||||
return dst;
|
return dst;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -3414,7 +3414,7 @@ X86.fnVERW = function VERW(dst, src)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.clearZF();
|
this.clearZF();
|
||||||
if (this.sizeData > 2 || this.sizeAddr > 2) this.stopCPU();
|
if (DEBUG && (this.sizeData > 2 || this.sizeAddr > 2)) this.stopCPU();
|
||||||
return dst;
|
return dst;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue