ROL, RLC

Circular Shift Left.

Syntax

rol [count]
rlc [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:  ; Define Label
 
rol
 
goto CYCLE ; Infinite cycle
exrol.mlh_g.gif
exrol.mr_g.gif

Example 0x01

sleeps 500 ; Set sleeps = 500 ms
 
100000100000
 
CYCLE:  ; Define Label
 
rol
 
goto CYCLE ; Infinite cycle
exrol1.mlh_g.gif
exrol1.mr_g.gif

Example 0x02

sleeps 500 ; Set sleeps = 500 ms
 
100010001000
 
CYCLE:  ; Define Label
 
rol
 
goto CYCLE ; Infinite cycle
exrol2.mlh_g.gif
exrol2.mr_g.gif

Example 0x03

sleeps 500 ; Set sleeps = 500 ms
 
100100100100
 
CYCLE:  ; Define Label
 
rol
 
goto CYCLE ; Infinite cycle
exrol3.mlh_g.gif
exrol3.mr_g.gif

Example 0x04

sleeps 500 ; Set sleeps = 500 ms
 
100001110000
 
CYCLE:  ; Define Label
 
rol
 
goto CYCLE ; Infinite cycle
exrol4.mlh_g.gif
exrol4.mr_g.gif