ROR, RRC

Circular Shift Right.

Syntax

ror [count]
rrc [count]

Parameters

count
  • Decimal number from 2 to 100, tells how many times next command or block will be retried.

Example 0x00

sleeps 500 ; Set sleeps = 500 ms
 
10
 
CYCLE:    ; Deine Label
 
ror
 
goto CYCLE ; Infinite cycle
exror.mlh_g.gif
exror.mr_g.gif

Example 0x01

sleeps 500 ; Set sleeps = 500 ms
 
10
 
CYCLE:     ; Deine Label
 
rol 12
ror 12
 
goto CYCLE ; Infinite cycle
exror1.mr_g.gif

Example 0x02

sleeps 500 ; Set sleeps = 500 ms
 
100000100000
 
CYCLE:     ; Deine Label
 
rol 5
ror 5
 
goto CYCLE ; Infinite cycle
exror2.mlh_g.gif
exror2.mlv_g.gifexror2.mlv_r.gifexror2.mlv_c.gifexror2.mlv_y.gifexror2.mlv_b.gifexror2.mlv_p.gifexror2.mlv_a.gif