Assembler untuk Cracker :
JMP>
|
JMP
USAGE : JMP address
PURPOSE : Equivalent to a basic GOTO, jumps to a section of code
EXAMPLE : JMP 00402011
JMP is an unconditional jump to a section of code. As simple as that! :)
There are tons of variations on this instruction, the most important ones are:
JZ - Jump if the zero flag is set. ( Same as JE )
JNZ - Jump if the zero flag is not set. ( Same as JNE )
These usually follow a CMP instruction, ie:
CMP RealSerial,BadSerial ; Compare the real serial to our serial
JNE GoAwayBadCracker ; If Not Equal then exit.
|