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

BitPatternSTK() private method

private BitPatternSTK ( ushort operand, ushort &value, RegGeneral &destination ) : void
operand ushort
value ushort
destination RegGeneral
return void
        private void BitPatternSTK(ushort operand, out ushort value, out RegGeneral destination)
        {
            destination = RegGeneral.None; // unused
            value = (ushort)(operand & 0xFF01);
        }