We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in ARMv7_CPU.prototype.usat = function(inst, addr)
var ret = this.unsigned_satq(this.sint32(operand), saturate_to); The above statement is incorrect. The following description seems to be correct.
var ret = this.unsigned_satq(this.sint32(operand), saturate_to);
var ret = this.unsigned_satq(bitops.sint32(operand), saturate_to);
The text was updated successfully, but these errors were encountered:
I found a problem with another issue.
this.regs[n] = ret; The above is an incorrect register for the return.
this.regs[n] = ret;
this.regs[d] = ret; The correct destination register is regs[d].
this.regs[d] = ret;
Sorry, something went wrong.
No branches or pull requests
in ARMv7_CPU.prototype.usat = function(inst, addr)
var ret = this.unsigned_satq(this.sint32(operand), saturate_to);
The above statement is incorrect.
The following description seems to be correct.
var ret = this.unsigned_satq(bitops.sint32(operand), saturate_to);
The text was updated successfully, but these errors were encountered: