srl (ix+*),e

Arithmetic // SRL (Shift Right Logical)

0xDDCB**3B - u56779

Description

The contents of the memory location pointed to by ix plus * are shifted right one bit position. The contents of bit 0 are copied to the carry flag and a zero is put into bit 7. The result is then stored in e.

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": "srl (ix+*),e",
  "opcode": "srl",
  "operand": [
    "(ix+*)",
    "e"
  ],
  "code": "DDCB**3B",
  "bytes": 4,
  "time": 23,
  "description": "The contents of the memory location pointed to by ix plus * are shifted right one bit position. The contents of bit 0 are copied to the carry flag and a zero is put into bit 7. The result is then stored in e.",
  "category": "Arithmetic",
  "subCategory": "SRL (Shift Right Logical)"
}