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

BitPatternFLG() private method

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