adc hl,de

Arithmetic // ADC (ADd with Carry)

0xED5A - u60762

Description

Adds de and the carry flag to hl.

T States Bytes
15 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 hl,de",
  "opcode": "adc",
  "operand": [
    "hl",
    "de"
  ],
  "code": "ED5A",
  "bytes": 2,
  "time": 15,
  "description": "Adds de and the carry flag to hl.",
  "category": "Arithmetic",
  "subCategory": "ADC (ADd with Carry)"
}