You copied the Doc URL to your clipboard.
ADC
Add with Carry.
Syntax
ADC
Wd
, Wn
, Wm
; 32-bit
ADC
Xd
, Xn
, Xm
; 64-bit
Where:
Wd
- Is the 32-bit name of the general-purpose destination register.
Wn
- Is the 32-bit name of the first general-purpose source register.
Wm
- Is the 32-bit name of the second general-purpose source register.
Xd
- Is the 64-bit name of the general-purpose destination register.
Xn
- Is the 64-bit name of the first general-purpose source register.
Xm
- Is the 64-bit name of the second general-purpose source register.
Operation
Add with Carry adds two register values and the Carry flag value, and writes the result to the destination register.
, where R
d = R
n + R
m + C
is either R
W
or X
.