You copied the Doc URL to your clipboard.
ADCS
Add with Carry, setting flags.
Syntax
ADCS
Wd
, Wn
, Wm
; 32-bit
ADCS
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, setting flags, adds two register values and the Carry flag value, and writes the result to the destination register. It updates the condition flags based on the result.
, where R
d = R
n + R
m + C
is either R
W
or X
.