adc a,(ix+*)

Arithmetic // ADC (ADd with Carry)

0xDD8E - u56718

Description

Adds the value pointed to by ix plus * and the carry flag to a.

T States Bytes
19 3

Condition Bits Affected

S affected as defined
Z affected as defined
H affected as defined
P/V detects overflow
N affected as defined
C affected as defined

source
{
  "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,(ix+*)",
  "opcode": "adc",
  "operand": [
    "a",
    "(ix+*)"
  ],
  "code": "DD8E",
  "bytes": 3,
  "time": 19,
  "description": "Adds the value pointed to by ix plus * and the carry flag to a.",
  "category": "Arithmetic",
  "subCategory": "ADC (ADd with Carry)"
}