branch if carry clear.
A 6502 opcode. To perform 2-byte addition, you can do this:
    LDA a
    ADC b
    STA c
    BCC s1
    LDA a+1
    ADC b+1
    STA c+1
 s1:RET