home *** CD-ROM | disk | FTP | other *** search
/ ftp.barnyard.co.uk / 2015.02.ftp.barnyard.co.uk.tar / ftp.barnyard.co.uk / cpm / walnut-creek-CDROM / CPM / UTILS / ARC-LBR / NULU15.FIX < prev    next >
Text File  |  2000-06-30  |  1KB  |  48 lines

  1. ;
  2. ;             FIX FOR NULU VERSION 1.5
  3. ;           A Message from Martin Murray
  4. ;             with acknowledgements to
  5. ;             Howard Goldstein
  6. ;                 01/09/86
  7. ;
  8. ; A fix has been found for NULU v1.5.  Like all good fixes, however, it
  9. ; causes its own share of problems and can only stand as a temporary fix
  10. ; until I can get version 1.6 out.  The problem was BDOS function 37,
  11. ; which NULU15 uses before writing to a drive in case it has been
  12. ; changed.  Under certain circumstances, BDOS loses its mind when this
  13. ; function is called and starts giving away previously allocated disk
  14. ; blocks.  This is no good for anyone.    The "solution" lies in NOT USING
  15. ; BDOS 37.  The problem now is that you cannot tell NULU to log in a new
  16. ; disk.  Oh well, try to live with it until I get the new one out that
  17. ; will support the fix.
  18. ;
  19. ; Assemble with your favorite assembler and merge the resulting .HEX
  20. ; file into NULU15 with MLOAD.
  21. ;
  22. ;         MLOAD NULU151.COM=NULU15.COM,NULUFIX.HEX
  23. ;
  24. ; The result will be NULU 1.51 and will have the date of 01/09/86.
  25. ;
  26. ; More than special thanks are due to Howard Goldstein for this fix.  He
  27. ; found the problem.  He tested the fix.  He waded through all my self-
  28. ; modifying code.  His family will appreciate any help in paying the
  29. ; psychiatrist's bills.
  30. ;
  31. ;
  32.     ORG    010CH
  33.     DB    '1'
  34. ;
  35.     ORG    0110H
  36.     DB    '01/09/86'
  37. ;
  38.     ORG    0150H
  39.     DW    9832H
  40. ;
  41.     ORG    32B9H
  42.     RET
  43. ;
  44.     ORG    32BCH
  45.     RET
  46. ;
  47.     END
  48.