home *** CD-ROM | disk | FTP | other *** search
- ;
- ; CheckLeftButton V1.00 30-Aug-1993
- ;
- ; by Jan Hagqvist
- ;
- ; This program is PUBLIC DOMAIN
- ;
-
- ;
- ; Returns WARN if LeftMouseButton is pressed
- ;
-
- CheckLeftButton
- moveq.l #0,d0 ; ReturnFlag=0
- btst #6,$bfe001 ; Is LMB pressed?
- bne.s CheckLeftButton2 ; No
- moveq.l #5,d0 ; Yes, return WARN
- move.w #8191,d1 ; Set up a loop
- CheckLeftButton1
- move.w #$0000,$dff180 ; Flash screen black
- move.w #$0FFF,$dff180 ; Flash screen white
- dbf d1,CheckLeftButton1 ; Do the loop
- CheckLeftButton2
- rts ; Return to DOS
-
- END
-