home *** CD-ROM | disk | FTP | other *** search
/ ftp.whtech.com / ftp.whtech.com.tar / ftp.whtech.com / club100 / pg / pg100 / toggle.100 < prev   
Text File  |  2006-10-19  |  866b  |  35 lines

  1. TOGGLE.100 by Paul Globmam [72227,1661]
  2.                Copyright (c) 1990
  3. ---------------------------------------
  4. The following program will turn
  5. TELCOM's F6 into a scroll on/off
  6. toggle.  The machine language code for
  7. the toggle is...
  8.  
  9.         org 63551
  10.         lda 63038
  11.         xri 1
  12.         jmp 17473
  13.  
  14.  
  15.  
  16. The eight bytes of code are "hidden"
  17. behind BASIC's F4(Run) function key.
  18. If that key definition is ever altered
  19. then run this program before using the
  20. TELCOM scroll toggle.  Once installed,
  21. the toggle feature will remain the F6
  22. function until another program changes
  23. it, the BASIC F4(Run) is altered, or a
  24. cold start.  Two pokes will make
  25. TELCOM's F6 call this code.
  26.  
  27. Whenever you enter Term, scroll is on.
  28.  
  29.  
  30. 0 REM TOGGLE.100 (c) 1990 by P.Globman
  31. 1 POKE64268,63:POKE64269,248
  32. 2 FORI=0TO7:READX:POKE63551+I,X:NEXT
  33. 3 DATA 58,62,246,238,1,195,65,68
  34.  
  35.