ADC (add with carry) Tags: NVZC

Description:

Adds a byte of data to the accumulator plus move C. If the result does not fit in the byte, sets the transfer C, otherwise it will zero it. The result of the addition remains in the accumulator.

Example:

    ADC        #0; addition of transfer to A
      ADC (src),Y
    ADC data,X