home *** CD-ROM | disk | FTP | other *** search
- ;---------------------------------------------------------------
- ; Program: TST1.ASM
- ;
- ; Description: This program demonstrates the mouse in graphics
- ; mode.
- ;
- ; To Run: MASM TST1;
- ; LINK TST1;
- ; TST1
- ;---------------------------------------------------------------
-
- .MODEL LARGE
- .STACK 100h
- .CODE
-
- start:
- ; Set 640 x 200 2 color graphics mode
- mov ax,6
- int 10h
-
- ; Mouse Reset and Status
- xor ax,ax
- int 33h
-
- ; Show Cursor
- mov ax,1
- int 33h
-
- ; Wait for a key press, allowing testing of mouse
- mov ah,8
- int 21h
-
- ; Reset the mouse
- xor ax,ax
- int 33h
-
- ; Set 80 x 25 text mode
- mov ax,3
- int 10h
-
- ; Exit to MS-DOS
- mov ax,4C00h
- int 21h
-
- END start
- END