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

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

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