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);
        }