You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RegControl cr = (RegControl)((operand & 0x0700) >> 8);
Appears to be reading bits A98 (rrE per spec). Should have (operand & 0x0E00)
Apparently I'm writing an issue rather than a PR just to keep my cool kid rep as someone who's never written any C# 😛
The text was updated successfully, but these errors were encountered:
RegControl cr = (RegControl)((operand & 0x0700) >> 8);
Appears to be reading bits A98 (rrE per spec). Should have
(operand & 0x0E00)
Apparently I'm writing an issue rather than a PR just to keep my cool kid rep as someone who's never written any C# 😛
The text was updated successfully, but these errors were encountered: