home *** CD-ROM | disk | FTP | other *** search
/ Between Heaven & Hell 2 / BetweenHeavenHell.cdr / 500 / 491 / dosbug.mod < prev    next >
Text File  |  1983-07-02  |  2KB  |  47 lines

  1.  
  2.     This was provided by the people who developed the KNOWLEDGEMAN DBMS
  3. who got it from IBM.  It pertains ONLY to PC-DOS version 1.1. (V2 is OK.)
  4.     This bug relates to the random access I/O routines.  The problem is
  5. that the operating system sometimes thinks it has written data to the disk
  6. when it actually has not done so. This has NOT been completely tested by
  7. me.  Procedure:
  8.  
  9. 1.    Generate a fresh SINGLE SIDED SYSTEM DISK. You can use the command
  10.         FORMAT B:/1/S<cr>
  11.  
  12. 2.    With this system disk in drive B and a copy of DEBUG in drive A and
  13.     with the default drive as B, type
  14.         A:DEBUG<cr>
  15.  
  16. 3.    Type in the DEBUG command:
  17.         L 100 1 11 1<cr>
  18. 4.    Display the contents of memory locations 20C thru 20F by typing
  19.         D20C<cr>
  20.     response from DEBUG should be:
  21.         xxxx:020C 00 3A 06 4F        (ignore the xxxx)
  22.     If this isn't what you get, read the instructions again, then try
  23.     it over again with a fresh system disk or give up.
  24.  
  25. 5.    Use the E command to change the 00 byte at address 20C to 01 by
  26.     entering the command:
  27.         E20C<cr>
  28.     response:
  29.         020C:00
  30.     your response:
  31.         01<cr>
  32.  
  33. 6.    Display the contents of locations 20C-20F again to check the
  34.     results by typing:
  35.         D20C<cr>
  36.     response should be:
  37.         xxxx:020C 01 3A 06 4F        (ignore the xxxx again)
  38.  
  39. 7.    If it worked, save the patch by typing:
  40.         W100 1 11 1<cr>
  41.  
  42. 8.    Exit DEBUG by typing:
  43.         Q<cr>
  44.     You now have a patched system on the disk on drive B which you can
  45.     use as the master to make single or double sided system disks.
  46.  
  47.