Article ID: 120067
Article Last Modified on 2/11/2004
.IF 1
nop
.ENDIF
In this second example, a JMP instruction is added:
.IF 1 || 3
nop
.ENDIF
If you use a register, as in this third example, the result is a
conditional JMP to the location following the .IF:
.IF ax || 3
nop
.ENDIF
The code runs as expected, despite the extra instructions.
Additional query words: 6.10 buglist6.10 fixlist6.11
Keywords: kbfix KB120067