Ujmpiug
From Unofficial QEdit Wiki Guide
Contents
Syntax
Syntax: ujmpi_> register1, xxxxxxxx, function
- register1 = Register to compare
- xxxxxxxx = Integer to compare with
- function = Function to jump to if conditions are true.
Use
Used to compare the value of a register with an integer value. This Opcode is the same as jmpi_> except that it tests for an unsigned value. If register 1 is greater than integer go to function. To compare register with another register use jmp_>
Example
100: leti R1, 00000001
101: ujmpi_> R1, 00000002, 102 //If R1 is greater than R2 go to function 102
addi R1, 00000001
jmp 101
102: nop //This example does nothing.
ret