The brcmp Statement
The brcmp statement lets you conditionally jump from the current execution point to a new location. It is like the cmp statement except that instead of an output argument it has a label argument that specifies where program execution should resume. The syntax of the brcmp statement is shown below.
brcmp EQ, LoopStart, x, y // jump to LoopStart if x == y
1.6.2