home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckvdeh.txt < prev    next >
Text File  |  2020-01-01  |  2KB  |  52 lines

  1. CKVHEX and CKVDEH                                                    June 1994
  2.  
  3.   Originally by Stuart Hecht of Stevens Institute of Technology.
  4.   Later versions by Eric McQueen, Utah State University.
  5.   Converted to work on the Alpha AXP by Hunter Goatley, Western Kentucky Univ.
  6.   (See program edit history for additional credits.)
  7.  
  8. CKVHEX is an assembly language program for the VAX or Alpha AXP to convert any
  9. VMS file into a printable ASCII "hex" file, suitable for transfer as a text
  10. file over BITNET, or by electronic mail, or other means, or for storage on a
  11. text-oriented medium such as ANSI Format-D magnetic tape.  CKVDEH converts a
  12. hex file created by CKVHEX back into its original form, with all its
  13. attributes intact.
  14.  
  15. CKVDEH.MAR supports both 16-bit-address and 32-bit-address format files by
  16. changing the ':' that starts each line to '<' for 32-bit- address lines (you
  17. can also use 24-bit addresses by putting ';' on the front of a line).  It does
  18. not require the output file to be contiguous.
  19.  
  20. CKVHEX only creates 32-bit address lines.  Older versions of CKVHEX created
  21. 16-bit lines.  The current version of CKVDEH should be able to decode either
  22. kind of file correctly.
  23.  
  24. To build CKVDEH, to do this:
  25.  
  26.   MACRO CKVDEH
  27.   LINK CKVDEH
  28.  
  29. To build CKVHEX:
  30.  
  31.   MACRO CKVHEX
  32.   LINK CKVHEX
  33.  
  34. Or use the CKVDEH.COM procedure to build these programs.  Or if you have MMS,
  35. rename CKVDEH.MMS to DESCRIP.MMS and then run MMS.
  36.  
  37. To use either of these programs, simply run it.  It prompts you for the input
  38. or output file names.  If you press Return/Enter in response to "Output
  39. file name", the default name the same as the original file, but with its
  40. filetype replaced by .HEX.
  41.  
  42. NOTE: These programs work well, but the resulting .HEX file is usually about
  43. twice the size of the original file.  No attempt is made to optimize the size
  44. of the hexified file.  To produce smaller ASCII files, see Carlo Mekenkamp's
  45. MFTU package, which you can get by sending the command SEND MFTU in the body
  46. of a mail message to FILESERV@WKUVX1.BITNET.
  47.  
  48. By the way, you can use CKVHEX to hexify an AXP binary on a VAX and vice
  49. versa, and CKVDEH to dehexify a VAX binary on an AXP (and vice versa).
  50.  
  51. [End of CKVDEH.HLP]
  52.