Arithmetic // RLC (Rotate Left Circular)
0xCB11
- u51985
The contents of c 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.
T States | Bytes |
---|---|
8 | 2 |
S affected as defined
Z affected as defined
H reset
P/V detects parity
N reset
C affected as defined
{ "flags": { "S": "affected as defined", "Z": "affected as defined", "H": "reset", "P/V": "detects parity", "N": "reset", "C": "affected as defined" }, "operation": "rl c", "opcode": "rl", "operand": [ "c" ], "code": "CB11", "bytes": 2, "time": 8, "description": "The contents of c 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.", "category": "Arithmetic", "subCategory": "RLC (Rotate Left Circular)" }