Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- TASM 2.x / MASM 6.x Assembly Language - <b>nojumps disables conditional jump extending tasm directive</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
NOJUMPS          Disables Conditional Jump Extending           TASM Directive

  NOJUMPS

     The NOJUMPS directive disables conditional jump extensions. It is
     the opposite of the JUMP directive.

     Under JUMPS, if the target of a conditional jump is out of range,
     TASM converts the jump into a local jump/JMP pair. For example:

                JE      EQUAL_PLACE
     becomes:
                JNE     @@A
                JMP     EQUAL_PLACE
                @@A:

     If you specify NOJUMPS, this automatic expansion does not occur.

       Notes:     NOJUMPS is the default in TASM.

See Also: JUMPS

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson