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

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

private BPL ( ushort operand ) : void
operand ushort
Результат void
        private void BPL(ushort operand)
        {
            if (!FL_N) {
                ushort value;
                RegGeneral destination;
                BitPatternBRA(operand, out value, out destination);
                PC = (ushort)(PC + (sbyte)value - 2);
            }
        }