Jmpuexe

From Unofficial QEdit Wiki Guide
Revision as of 11:19, 5 April 2011 by Tofuman (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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 NOT equal go to function. To compare register with an integer use jmpi_!=

Example


100:     jmp_!= R1, R2, 101 //If R1 is NOT equal to R2 go to function 101
         leti R1, 00000001
         jmp 100
         ret 
101:     nop //This example does nothing.
         ret 

Also see

leti, ret, nop, jmp