TODO: this
Description
Add contents of Rd, the contents of Rs, and the C-bit of the CPSR. Place result in Rd.
Notes
- Sets CPSR condition codes
- Rd and Rs must range from r0 to r7
- Assembler also allows adc for this instruction
ARM Equivalent
adcs Rd, Rd, Rs
Example
adcs r0, r3 // r0 = r0 + r3 + C-bit and set condition // codes on the result.