home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / asmutl / link.mod < prev    next >
Text File  |  1983-10-31  |  781b  |  16 lines

  1. El Paso TX  10-29-83
  2.  
  3. How often have you inadvertently struck a key while Digital Research's
  4. LINK was linking a file? If you've ever done it (especially where you
  5. had to type a long command line or the linking took a while) you know
  6. how frustrating it is when LINK aborts. It is a mystery to me why DRI
  7. would allow LINK to abort on ANY keyboard entry. Fortunately, the
  8. changes to prevent that are trivial. Simply use your favorite debugger,
  9. load LINK.COM and change location 368B from 0E to AF and 368C from 0B to C9.
  10. This causes the console status routine to always return "console not ready."
  11.  
  12. NOTE: platch is valid for LINK ver 1.31 only. The code to be changed is
  13. from 0E 0B C3 05 00  (MVI C,0B ! JMP BDOS)
  14. to   AF C9 .. .. ..  (XRA A ! RET)
  15. and can be found using DDTF or DU.
  16.