home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 June / SIMTEL_0692.cdr / msdos / pcmag / vol6n01.arc / DIREX.FIX < prev   
Encoding:
Text File  |  1987-01-14  |  1.1 KB  |  49 lines

  1.      RX for DIREX.COM
  2.  
  3. A number of readers have correctly noted that Steven Holzner's DIREX.COM
  4. (Programming/Utilities column, Volume 6 Number 1) does not handle files
  5. larger than 62K properly.  Corrected versions DIREX.COM, DIREX.ASM, and
  6. DIREX.BAS can be downloaded from the  PC Interactive Reader Service, or you
  7. can make the necessary changes to these files manually, as described below.
  8.  
  9. FOR DIREX.COM, use DEBUG to change F8 to F4 at the two addresses shown,
  10. as follows:
  11.  
  12.  
  13. DEBUG DIREX.COM
  14.  
  15. E 535 F4
  16. E 55D F4
  17.  
  18. W
  19. Q
  20.  
  21.  
  22. FOR DIREX.ASM, change the line
  23.  
  24.  
  25. MOV CX, 62*1024
  26.  
  27. near the bottom of p. 300 in the printed listing to
  28.  
  29.  
  30. MOV CX, 61*1024
  31.  
  32. Similarly, on p. 301 of the listing, change
  33.  
  34.  
  35. CMP BYTES_READ, 62*1024
  36.  
  37. to
  38.  
  39. CMP BYTES_READ, 61*1024
  40.  
  41.  
  42. FOR DIREX.BAS, change the 248 in the sixth column of lines 1630 and 1680
  43. to 244 and correspondingly change the line checksums (column 9) for these
  44. lines to 1061 and 962, respectively.  The overall program checksum (line 270)
  45. must be decreased to 197795.
  46.  
  47. Our thanks to Bob Pirko of New York for these patches, and our apologies
  48. to readers who were inconvenienced.--Ed.
  49.