Ypsilon.Emulation.Processor.YCPU.BitPatternHWQ C# (CSharp) Метод

BitPatternHWQ() приватный Метод

private BitPatternHWQ ( ushort operand, ushort &value, RegGeneral &destination ) : void
operand ushort
value ushort
destination RegGeneral
Результат void
        private void BitPatternHWQ(ushort operand, out ushort value, out RegGeneral destination)
        {
            destination = RegGeneral.None; // Unused.
            value = (ushort)((operand & 0xFF00) >> 8);
        }