Answers for "jump if greater than assembly"

0

jump if greater than assembly

JE/JZ --> "Jump Equal or Jump Zero"
JNE/JNZ --> "Jump not Equal or Jump Not Zero"
JG/JNLE --> "Jump Greater or Jump Not Less/Equal"
JGE/JNL	--> "Jump Greater/Equal or Jump Not Less"
JL/JNGE	--> "Jump Less or Jump Not Greater/Equal"
JLE/JNG	--> "Jump Less/Equal or Jump Not Greater"
Posted by: Guest on July-08-2021

Browse Popular Code Answers by Language