Ypsilon.Emulation.Processor.YCPU.BitPatternHWQ C# (CSharp) Method

BitPatternHWQ() private method

private BitPatternHWQ ( ushort operand, ushort &value, RegGeneral &destination ) : void
operand ushort
value ushort
destination RegGeneral
return void
        private void BitPatternHWQ(ushort operand, out ushort value, out RegGeneral destination)
        {
            destination = RegGeneral.None; // Unused.
            value = (ushort)((operand & 0xFF00) >> 8);
        }