Ypsilon.Emulation.Processor.YCPU.BitPatternFLG C# (CSharp) 메소드

BitPatternFLG() 개인적인 메소드

private BitPatternFLG ( ushort operand, ushort &value, RegGeneral &destination ) : void
operand ushort
value ushort
destination RegGeneral
리턴 void
        private void BitPatternFLG(ushort operand, out ushort value, out RegGeneral destination)
        {
            destination = RegGeneral.None; // unused
            value = (ushort)(operand & 0xF000); // flags to set
        }