Difference between revisions of "Jmpiue"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
(No difference)

Revision as of 13:28, 28 March 2011

Syntax

Syntax: jmpi_= register1, xxxxxxxx, function

  • register1 = Register to compare
  • xxxxxxxx = Integer value to compare with
  • function = Function to jump to if conditions are true.

Use

Used to compare the value of a register with a integer value. If they are equal go to function. To compare register with another register use jmp_=

Example


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

Also see

leti, addi, ret, nop