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

BNE() private method

private BNE ( ushort operand ) : void
operand ushort
return void
        private void BNE(ushort operand)
        {
            if (!FL_Z) {
                ushort value;
                RegGeneral destination;
                BitPatternBRA(operand, out value, out destination);
                PC = (ushort)(PC + (sbyte)value - 2);
            }
        }