home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / VDOEDIT / VDEPTCH3.ZEX < prev    next >
Text File  |  2000-06-30  |  2KB  |  49 lines

  1. ;;
  2. ;;
  3. ;;   PROGRAM: VDEPTCH3.ZEX
  4. ;;   AUTHOR:  Fred Haines
  5. ;;   DATE:    August 30, 1987
  6. ;;   PURPOSE: patch Eric Meyer's VDE v2.61 to install CTRL-V as down arrow key
  7. ;;            and CTRL-J as INSERT mode toggle.
  8.  
  9. ;;   Version 3 - August 30, 1987
  10. ;;   adjusts the addresses to be poked to v2.61.  This patch works onlyáì
  11. ;;   on v2.61.  Use VDEPTCH2.ZEX for v2.6.  áì
  12.  
  13. ;;   Version 2 - August 18, 1987
  14. ;;   corrects an error in VDEPTCH which led to bad behavior by the macro keys,
  15. ;;   ESC-n sequences, if the key was not programmed.  If you installed this
  16. ;;   patch from VDEPTCH, you can correct the error by changing the byte at
  17. ;;   062Eh from 16h to 0Ah.
  18.  
  19. ;;   Video Display Editor v2.6 is copyrighted by its author, Eric Meyer, and,
  20. ;;   while it has been made freely available to the CPM community by its
  21. ;;   author, it may not be distributed in patched form.  You may patch your
  22. ;;   own copy of the program as you like, but please respect the author's
  23. ;;   copyright.
  24.  
  25. ;;   Many popular terminals use a CTRL-V for the down arrow key instead of the
  26. ;;   more common CTRL-J.  While it is possible to specify a CTRL-V as the down
  27. ;;   arrow key when installing your terminal for VDE v2.6 with VINST v2.6,
  28. ;;   this interferes with VDE's use of CTRL-V to toggle INSERT mode on and
  29. ;;   off.  Patching the following three bytes solves the problem, changing CTRL-
  30. ;;   V to the down arrow and CTRL-J to the INSERT mode toggle.
  31.  
  32. ;;   To install this patch - if you are running a Z System, put VDE.COM and
  33. ;;   ZEX.COM somewhere in the patch and issue this command:
  34.  
  35. ;;      ZEX VDEPTCH3
  36.  
  37. ;;   If you are not using a Z System, you can use EDIT, PATCH, EDFILE, or any
  38. ;;   standard patcher to change the three bytes shown below in the poke
  39. ;;   statements.
  40.  
  41. ^#
  42. get 100 vde261.com
  43. poke 0165 16
  44. poke 05af 0a
  45. poke 2f26 ca
  46. save 48 newvde.com
  47.  
  48. ;;   Test NEWVDE, and if it works all right, rename it to VDE.
  49.