Difference between revisions of "Jmpuge"
From Unofficial QEdit Wiki Guide
(→Use) |
|||
Line 7: | Line 7: | ||
==Use== | ==Use== | ||
− | Used to compare the value of a register with | + | Used to compare the value of a register with another register. If they are greater or equal go to function. To compare register with an integer use [[jmpiuge|jmpi_>=]] |
==Example== | ==Example== |
Latest revision as of 06:37, 23 May 2014
Contents
Syntax
Syntax: jmp_>= register1, register2, function
- register1 = Register to compare
- register2 = Register to compare with
- function = Function to jump to if conditions are true.
Use
Used to compare the value of a register with another register. If they are greater or equal go to function. To compare register with an integer use jmpi_>=
Example
100: jmp_>= R1, R2, 101 //If R1 is greater or equal to R2 go to function 101
let R1, R2
jmp 100
101: nop //This example does nothing.
ret