n---------------m | n----------m | n--m v->|7------->0|-T->|CY| v----------u v--u (HL)
RRC
(HL)
b7 | b6 | b5 | b4 | b3 | b2 | b1 | b0 | |
---|---|---|---|---|---|---|---|---|
1 | 1 | 0 | 0 | 1 | 0 | 1 | 1 | $CB |
0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | $0E |
The contents of the memory address specified by the contents of the register pair HL are rotated right 1 bit position. The contents of bit 0 are copied to the Carry flag and also to bit 7.
S | is set if result is negative, otherwise it is reset. |
Z | is set if result is 0, otherwise it is reset. |
H | is reset. |
P/V | is set if parity even, otherwise it is reset |
N | is reset. |
C | is data from bit 0 of source register. |
The HL register pair contains $2828 and the contents of memory location $2828 are:
7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
---|---|---|---|---|---|---|---|
0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 |
Upon the execution of
RRC (HL)
memory location $2828 and the Carry flag now contain:
7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 | C | |
---|---|---|---|---|---|---|---|---|---|
1 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 1 |