Difference between revisions of "Jmp"

From Unofficial QEdit Wiki Guide
Jump to: navigation, search
 
 
Line 5: Line 5:
  
 
==Use==
 
==Use==
Use to jump to a function.
+
Used to jump to a function with no conditions.
  
 
==Example==
 
==Example==

Latest revision as of 12:38, 28 March 2011

Syntax

Syntax: jmp function

  • function = function to jump to.

Use

Used to jump to a function with no conditions.

Example


100:     window_msg 'I'm Here First'
         winend
         jmp 102
         ret
101:     window_msg 'I'm Here Third'
         winend
         jmp 1
         ret
102:     window_msg 'I'm Here Second'
         winend
         jmp 101
         ret

Also see

window_msg, winend, ret