rl (ix+*),d

Arithmetic // RLC (Rotate Left Circular)

0xDDCB**12 - u56779

Description

The contents of the memory location pointed to by ix plus * are rotated left one bit position. The contents of bit 7 are copied to the carry flag and the previous contents of the carry flag are copied to bit 0. The result is then stored in d.

T States Bytes
23 4

Condition Bits Affected

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

source
{
  "flags": {
    "S": "affected as defined",
    "Z": "affected as defined",
    "H": "reset",
    "P/V": "detects parity",
    "N": "reset",
    "C": "affected as defined"
  },
  "operation": "rl (ix+*),d",
  "opcode": "rl",
  "operand": [
    "(ix+*)",
    "d"
  ],
  "code": "DDCB**12",
  "bytes": 4,
  "time": 23,
  "description": "The contents of the memory location pointed to by ix plus * are rotated left one bit position. The contents of bit 7 are copied to the carry flag and the previous contents of the carry flag are copied to bit 0. The result is then stored in d.",
  "category": "Arithmetic",
  "subCategory": "RLC (Rotate Left Circular)"
}