home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / sysutl / redir31.lbr / RED31PAT.AZM / RED31PAT.ASM
Encoding:
Assembly Source File  |  1987-08-31  |  3.3 KB  |  96 lines

  1. ;  **************************************************************************
  2. ;
  3. ;            *** REDIR PATCH FILE ***
  4. ;
  5. ;    The following instructions should be used to patch the file
  6. ;  REDIR30.COM to create REDIR.COM.
  7. ;
  8. ;  **************************************************************************
  9. ;
  10. ;            PATCHING UNDER CP/M
  11. ;            -------------------
  12. ;
  13. ;        ASM RED30PAT
  14. ;        DDT REDIR30.COM
  15. ;
  16. ;            -IRED30PAT.HEX
  17. ;            -R
  18. ;            -G0
  19. ;
  20. ;        SAVE 43 REDIR.COM
  21. ;
  22. ;  **************************************************************************
  23. ;
  24. ;            PATCHING UNDER MP/M
  25. ;            -------------------
  26. ;
  27. ;        ASM RED30PAT
  28. ;        DDT REDIR30.COM
  29. ;
  30. ;            -IRED30PAT.HEX
  31. ;            -R
  32. ;            -IREDIR.COM
  33. ;            -W56
  34. ;            -G0
  35. ;
  36. ;  **************************************************************************
  37. ;
  38.     ORG    012FH            ;DO NOT CHANGE THIS
  39. ;
  40. ;  **************************************************************************
  41. ;    This is the drive defined as the "SYSTEM" drive. It is where files
  42. ;  are searched for after an unsuccessful search on the default drive if the
  43. ;  drive or user is not specified in the filename. This field affects CP/M
  44. ;  only since under MP/M the system drive is defined automatically. The valid
  45. ;  range for this field is from 1 to 16 decimal.
  46. ;
  47. ;    A = 1,  B = 2,  ...  P = 16
  48. ;
  49.     DB    1
  50. ;
  51. ;  **************************************************************************
  52. ;    This is the user area defined as the "SYSTEM" user. It is where files
  53. ;  are searched for after an unsuccessful search on the default user if the
  54. ;  drive or user is not specified in the filename. The valid range for this
  55. ;  field is from 0 to 15 decimal.
  56. ;
  57.     DB    0
  58. ;
  59. ;  **************************************************************************
  60. ;    This is the drive defined as the "TEMPORARY" drive. It is where the
  61. ;  temporary file is made when REDIR is batch processing. This field affects
  62. ;  CP/M only since MP/M the temporary drive is defined automatically. The
  63. ;  valid range for this field is from 1 to 16 decimal.
  64. ;
  65. ;    A = 1,  B = 2,  ...  P = 16
  66. ;
  67.     DB    1
  68. ;
  69. ;  **************************************************************************
  70. ;    This is the user area defined as the "SYSTEM" user. It is where files
  71. ;  are searched for after an unsuccessful search on the default user if the
  72. ;  drive or user is not specified in the filename. The valid range for this
  73. ;  field is from 0 to 15 decimal.
  74. ;
  75.     DB    0
  76. ;
  77. ;  **************************************************************************
  78. ;    This is the name of the REDIR program. It is necessary when REDIR is
  79. ;  batch processing. This must be 11 characters long.
  80. ;
  81.     DB    'REDIR   COM'
  82. ;
  83. ;               *** IMPORTANT NOTE ***
  84. ;    The name of the file must be changed here if you desire a name other
  85. ;  than "REDIR   COM". If you do change this field be sure to rename the file
  86. ;  AFTER the patching sequence described in the beginning of this file.
  87. ;
  88. ;  **************************************************************************
  89. ;    This is the name of the REDIR help file. It is a detailed help file
  90. ;  that is displayed when "REDIR ?" is entered from the system prompt. This
  91. ;  must be 11 characters long.
  92. ;
  93.     DB    'REDIR   HLP'        ;Name of REDIR help patch area
  94. ;
  95. ;  **************************************************************************
  96.