Arithmetic // RLCA, RLA, RRCA, RRA
0x07 - u7
The contents of a are rotated left one bit position. The contents of bit 7 are copied to the carry flag and bit 0.
| T States | Bytes |
|---|---|
| 4 | 1 |
S unaffected
Z unaffected
H reset
P/V unaffected
N reset
C affected as defined
{
"flags": {
"S": "unaffected",
"Z": "unaffected",
"H": "reset",
"P/V": "unaffected",
"N": "reset",
"C": "affected as defined"
},
"operation": "rlca",
"opcode": "rlca",
"operand": [],
"code": "07",
"bytes": 1,
"time": 4,
"description": "The contents of a are rotated left one bit position. The contents of bit 7 are copied to the carry flag and bit 0.",
"category": "Arithmetic",
"subCategory": "RLCA, RLA, RRCA, RRA"
}