Skip to content
New issue

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

JitArm64: Implement mtfsfx #9977

Merged
merged 1 commit into from Jul 31, 2021
Merged

Conversation

JosJuice
Copy link
Member

The sixth and final part of implementing the FPSCR system register instructions.

@ghost

This comment has been minimized.

for (int i = 0; i < 8; i++)
{
if (inst.FM & (1 << i))
mask |= 0xF << (4 * i);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
mask |= 0xF << (4 * i);
mask |= 0xFU << (4 * i);

Otherwise this is ORing a signed value

The sixth and final part of implementing the FPSCR system register
instructions.
@lioncash lioncash merged commit 7c36534 into dolphin-emu:master Jul 31, 2021
10 of 11 checks passed
@JosJuice JosJuice deleted the jitarm64-mtfsfx branch July 31, 2021 21:59
@dolphin-emu-bot
Copy link
Contributor

FifoCI detected that this change impacts graphical rendering. Here are the behavior differences detected by the system:

automated-fifoci-reporter

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants