• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back
JMP
Jump to the given address, no conditions.
JE
Jump to the given if y=x.
JNE
Jump to the given if y≠x
JG
Jump to the given if y<x.
JNG
Jump to the given if y<x is not true.
JL
Jump to the given if y>x.
JNL
Jump to the given if y>x is not true.
JGE
Jump to the given if y<x or y=x.
JLE
Jump to the given if y>x or y=x.
JA
Jump to the given if x is above y. (also JNBE - Jump if not below or equal)
JNA
Jump to the given if x is not above y. (also JBE - Jump if below or equal)
JB
Jump to the given if x is below y. (also JNAE - Jump if not above or equal)
JNB
Jump to the given if x is not below y. (also JAE - Jump if above or equal)