home *** CD-ROM | disk | FTP | other *** search
/ RBBS in a Box Volume 1 #2 / RBBS_vol1_no2.iso / 009z / multilnk.unp < prev    next >
Text File  |  1984-06-13  |  1KB  |  29 lines

  1. The excellent multi-tasking software package called MultiLink (tm)
  2. (not related to a similar-named package from Davong) claims to not be copy
  3. protected.  In fact, they (in version 2.05 for IBM DOS 2.0) have placed
  4. "hidden" data on track 41 and used a complicated scheme of self-modifying code
  5. to prevent finding the read-check.
  6.  
  7. Experienced programmers can modify their source to permit functional backup
  8. (and use with drives that cannot reach track 41) by NOP'ing the disk reads
  9. and data checks.
  10.  
  11. Use DEBUG to find and modify the following fragments in MLINK.COM.  (These
  12. addresses change if you say "GO" so resist the urge until you change the 
  13. code):
  14.            existing code:               change to:
  15.  
  16.           DS:2A40   MOV CX,2908
  17.              2A43   CALL 2B40           NOP, NOP, NOP
  18.              2A46   JNB 2A51            JMP 2A51
  19.  
  20.              2A38   MOV CX,2903
  21.              2A3B   CALL 2B40           NOP, NOP, NOP
  22.              2A3E   JNB 2A51            JMP 2A51
  23.  
  24.                     CMP[230B],77      
  25.              2A5B   JNZ  2A4E           NOP, NOP
  26.  
  27.  
  28.