Visual Branching and Loop Flow

Code

MOV #5, W0
LOOP:
DEC W0
CP W0, #0
BNE LOOP
; ... more code
            

Registers

W0: 5

Loop Count: 0

Ready