Arithmetic // ADC (ADd with Carry)
0x8F - u143
Adds a and the carry flag to a.
| T States | Bytes |
|---|---|
| 4 | 1 |
S affected as defined
Z affected as defined
H affected as defined
P/V detects overflow
N affected as defined
C affected as defined
{
"flags": {
"S": "affected as defined",
"Z": "affected as defined",
"H": "affected as defined",
"P/V": "detects overflow",
"N": "affected as defined",
"C": "affected as defined"
},
"operation": "adc a,a",
"opcode": "adc",
"operand": [
"a",
"a"
],
"code": "8F",
"bytes": 1,
"time": 4,
"description": "Adds a and the carry flag to a.",
"category": "Arithmetic",
"subCategory": "ADC (ADd with Carry)"
}