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

BUG() private method

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