- Shuffle
Toggle OnToggle Off
- Alphabetize
Toggle OnToggle Off
- Front First
Toggle OnToggle Off
- Both Sides
Toggle OnToggle Off
Front
How to study your flashcards.
Right/Left arrow keys: Navigate between flashcards.right arrow keyleft arrow key
Up/Down arrow keys: Flip the card between the front and back.down keyup key
H key: Show hint (3rd side).h key
![]()
PLAY BUTTON
![]()
PLAY BUTTON
![]()
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 |