home *** CD-ROM | disk | FTP | other *** search
- ;; @(#) Zeke:NoICON.a - lÜrdag 3 juni 1989
- ;;
- ;; FILE: NoICON.a
- ;; CRE: Sven Axelsson
- ;; Sagogangen 1
- ;; S-422 45 Gothenburg
- ;; SWEDEN
- ;; UUCP: d83_sven_a@tekno.chalmers.se
- ;; VER: 1.0
- ;; REV: lÜrdag 3 juni 1989 22.51.36
- ;; HIST: 89-06-03 (1.0) First version.
- ;;
- ;; This trivially simple INIT resource can be used by people who, like me,
- ;; doesn't like all those little icons that line up at the bottom of the
- ;; screen and make it look so cluttered. It works by fooling Paul Mercer's
- ;; ShowINIT INIT (and compatibles...) to plot the icon off the screen.
- ;; Note that it is not compatible with IconWrap, i.e. IconWrap puts the
- ;; icons back on the screen again.
-
-
- include 'SysEqu.a'
-
-
- myH equ CurApName+32-4 ;this is where ShowINIT keeps
- ;the current x-coordinate
- ;for the icon to plot
-
- checksum equ myH+2 ;this is used by ShowINIT to
- ;check that the coordinate
- ;hasn't been tampered with
-
- firstX equ -32000 ;start the icons at this
- ;coordinate (way off the screen)
-
- firstCheck equ $1620 ;set the checksum to this value
- ;to fool the ShowINIT mechanism
- ;to think it has been normally
- ;initialized
-
-
- noICON: proc export
-
- move.w #firstX,myH
- move.w #firstCheck,checksum
-
- rts
-
- endproc ;that's all!
-
- end