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

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

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