adc a,*

Arithmetic // ADC (ADd with Carry)

0xCE - u206

Description

Adds * and the carry flag to a.

T States Bytes
7 2

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,*",
  "opcode": "adc",
  "operand": [
    "a",
    "*"
  ],
  "code": "CE",
  "bytes": 2,
  "time": 7,
  "description": "Adds * and the carry flag to a.",
  "category": "Arithmetic",
  "subCategory": "ADC (ADd with Carry)"
}