Skip to main content
Home Forums Apple Mice differences? — #15 Apple Mice differences? — #15
Post #15 by luddite
Source ForumApple Mice differences? — #15
CategoryTroubleshooting
Post DateSat, 14 Jul 2007 - 21:53
Original URLhttps://68kmla.org/bb/threads/apple-mice-differences.9020/
Post
Hey guys, I was wondering if any of you knew a program that utilized the Mouse on the Apple //e. In a recent grab I got a M0100 mouse and I want to test whether or not it is compatible with my Apple.
Here's a couple of programs you can type in at the Applesoft prompt:

Code:
10  HOME $ = CHR$(4) 
20  PRINT D$"IN#4" 
30  INPUT A,B,C 
40  PRINT D$"IN#0" 
50  VTAB 10: PRINT A,B,C 
60  GOTO 20
Move the mouse around and click the button to see the effect.

Control-C to exit.

Code:
10  HOME : D$ = CHR$(4) 
20  PRINT D$ ; "PR#4" : PRINT CHR$(1) : REM INIT 
30 PRINT D$ ; "PR#0" 
40 PRINT D$ ; "IN#4" 
50  INPUT "" ; X ,Y, S 
60 VTAB 10 : PRINT X ; "  "Y"  "S"  " 
70 IF S > 0 THEN 50 
80 PRINT D$ ; "IN#0" 
90 PRINT D$ ; "PR#4" : PRINT CHR$(0) 
100 PRINT D$ ; "PR#0"
Try searching comp.sys.apple2 on Google Groups for more.

mp.ls