• 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/5

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;

5 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)
mov (syntax)
mov
DOS call
Load Parameters to DOS call into registers:
mov AH , function code
int 21h ; Call DOS
Returned values, if any, are in registers
DOS Display string
DOS function code is
9h
mov DX , OFFSET Message
mov AH , 9h
int 21h
Return to DOS call
DOS function code is
4Ch
mov AL , 0h ;
Boilerplate Start Code:
mov AX , @data
mov DS , AX
_Begin