home *** CD-ROM | disk | FTP | other *** search
- 100 rem -------------------------------
- 105 rem ----- mauszeiger-demo 03 ------
- 110 rem -------------------------------
- 115 rem -------------------------------
- 120 :
- 125 :
- 130 if a=0 then a=1:load "maus*",8,1
- 135 poke 53280,15:poke 53281,15
- 140 poke 646,11
- 145 print"[147]";chr$(14);
- 150 :
- 155 print "[194]itte geben [211]ie zehn beliebige [215]orte"
- 160 print "ein :":print
- 165 for t=0 to 9
- 170 input w$(t)
- 175 next t
- 180 :
- 185 print "[147]";
- 190 for t=0 to 9
- 195 print w$(t)
- 200 next t
- 205 sys 49152,1,0,2
- 210 :
- 215 t=peek(56320)and 16
- 220 if t<>0 then 215
- 225 y=peek(53249)-50
- 230 l=int(y/8)
- 235 if l>10 then 215
- 240 x=peek(53248)-24+256*(peek(53264)and 1)
- 245 s=int(x/8)
- 250 if s> len(w$(l)) then 215
- 255 :
- 260 ad=1024+l*40
- 265 for t=0 to len(w$(l))
- 270 poke ad+t,(peek(ad+t)+128) and 255
- 275 next t
- 280 goto 215
-