home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / NOVELL / DPATCH.ZIP / PATCH.TXT
Encoding:
Text File  |  1990-09-18  |  1.1 KB  |  22 lines

  1. Patch Lines                Comments / Instructions
  2.  
  3. COPY NET3.COM NET3.SAV        |  Debug will not run against a .com or .exe
  4. DEBUG NET3.SAV            |      Patch is the same for XMSNET or EMSNET
  5. -S CS:0 FFFF 0 0 1 3 2 1F    |  Search for this string
  6. XXXX:YYYY            |  Debug will return the location of the string
  7. -E XXXX:(YYYY+4)        |  Edit the location + 4 bytes
  8. XXXX:(YYYY+4)  02.03        |  Debug will return the 02.  You type the 03
  9. -S CS:0 FFFF 82 FF FF 05    |  Search for this string
  10. YYYY:ZZZZ            |  Debug will return the location of the string
  11. -E YYYY:(ZZZZ+3)        |  Edit the location + 3 bytes
  12. YYYY:(ZZZZ+3)  05.02        |  Debug will return the 05.  You type the 02
  13. -W                |  Write the file
  14. Writing XXXX bytes        |  Debug reports the number of bytes written
  15. -Q                |  Quit Debug
  16. RENAME NET3.SAV NET3.COM    |  Rename the .sav file to its orignial name
  17.  
  18. Note:  You must add a hex 4 or 3 to the value returned by Debug.  To add hex
  19. numbers, you can use the Debug calculator.  To add 54ee + 4, for example, type
  20.  
  21. -h 54ee 4            |  The format is: h value value
  22. 54F2  54EA            |  Debug returns the sum, then the difference