Syntax: |
Operation: |
Operands: |
Program Counter: |
Opcode |
Comment |
Stack |
LSR Rd |
C = Rd[0] Rd = Rd >> 1 |
0 <= d <= 31 |
PC = PC + 1 |
1001010ddddd0110 |
-> b7 - - - - - - - - - - - - - - - - - - b0 -> C |
Shifts all bits in Rd one place to the right. Bit 7 is cleared. Bit 0 is loaded into the C flag of the SREG. This operation effectively divides an unsigned value by two. The C flag can be used to round the result.
I |
– |
||
T |
– |
||
H |
– |
||
S |
⇔ |
N XOR V, for signed tests. |
|
V |
⇔ |
N XOR C, for N and C after the shift. |
|
N |
0 |
0 |
|
Z |
⇔ |
~R7 AND ~R6 AND ~R5 AND ~R4 AND ~R3 AND ~R2 AND ~R1 AND ~R0 |
Set if the result is 0x00; cleared otherwise. |
C |
⇔ |
Rd0 |
Set if, before the shift, the LSB of Rd was set; cleared otherwise. |
R (Result) |
R (Result) equals Rd after the operation. |
add r0,r4 ; Add r4 to r0 lsr r0 ; Divide r0 by 2
1 (2 bytes)
Name |
Cycles |
AVRe |
1 |
AVRxm |
1 |
AVRxt |
1 |
AVRrc |
1 |