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 / JSAGE / ZSUS / PROGPACK / PROLNKPT.LBR / PROLNKPT.DZC / PROLNKPT.DOC
Text File  |  2000-06-30  |  1KB  |  33 lines

  1. February 27, 1987 - 16:31:58 - Bruce Morgen
  2.  
  3. PROLNKPT customizes Ron Fowler's PROLINK linkage editor for 
  4. command-driven use under ZCPR3. PROLINK's internal command 
  5. separator is ";", just like Z3's, which prevents PROLINK from 
  6. being used as a fully command-driven linking loader. To rectify 
  7. that, just type PROLNKPT x where x is your choice of a command 
  8. separator other than a semicolon. PROLINK.COM must be in the 
  9. current directory. PROLNKPT.COM is a simple ZCPR3 alias (listed 
  10. below) and should be installed with Z3INS or Z-RIP before use.  
  11. After patching you can use (assuming you've chosen "&" as your 
  12. command separator) command lines and scripts like:
  13.  
  14. prolink origin 100&outfil dir&link dir14&search <<
  15. a13:vlib,a13:z3lib,a13:syslib&exit
  16.  
  17.  
  18. ________________________________________________________________
  19.  
  20.  
  21.  VALIAS 1.2b [ZSIG]   Mode: Normal   Alias Name: B0:PROLNKPT
  22.  
  23. A-->IF NU $1
  24. B-->ECHO YOU MUST SPECIFY A COMMAND SEPARATOR
  25. C-->ECHO +ABORTING+
  26. D-->ELSE
  27. E-->GET 100 PROLINK.COM
  28. F-->POKE 61D "$1
  29. G-->REN PROLINK.OLD=PROLINK.COM
  30. H-->SAVE 40 PROLINK.COM
  31. I-->ECHO NEW COMMAND SEPARATOR IS "$1"
  32. J-->FI
  33.