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
viaddi
There's a decoding bug in the VU instruction viaddi, the imm5 is signed but it's decoded as unsigned.
imm5
Decode B207034A, it should decode as viaddi $vi3, $vi0, -0x2 but it's decoding as viaddi $vi3, $vi0, 0x1E instead.
B207034A
viaddi $vi3, $vi0, -0x2
viaddi $vi3, $vi0, 0x1E
R5900 EE (Emotion Engine, A Sony PlayStation 2 extension)
1.12.5
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Explain the problem.
There's a decoding bug in the VU instruction
viaddi
, theimm5
is signed but it's decoded as unsigned.Reproducer
Decode
B207034A
, it should decode asviaddi $vi3, $vi0, -0x2
but it's decoding asviaddi $vi3, $vi0, 0x1E
instead.Is this issue related to an specific MIPS extension?
R5900 EE (Emotion Engine, A Sony PlayStation 2 extension)
rabbitizer version
1.12.5
Optional: splat/spimdisasm version
No response
Optional: Version of other stuff
No response
Extra comments?
No response
The text was updated successfully, but these errors were encountered: