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# 😛
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# 😛