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 / TURBOPAS / YESNO.PAT < prev    next >
Text File  |  2000-06-30  |  2KB  |  52 lines

  1. The following patches will cause TURBO.COM to either always include compiler
  2. error messages or never include compiler error messages - automatically.  No
  3. more answering the same prompt in the same way you always do.  I recommend
  4. always including error messages.  Note that the first one is for the PC-DOS
  5. implementation and the second one is only for the generic MS-DOS implementation
  6. of Turbo Pascal version 2.00B.
  7.  
  8.                            - PC-DOS Implementation -
  9.      If the master from which the *COPY* you are patching was *COPIED* is
  10.      labeled MS DOS, IBM-PC then implement the following patch in TURBO.COM:
  11.  
  12. At Location   |   Change From   |   To
  13. -------------------------------------------
  14.               |                 |
  15.    29CE       |      E8         |   E9
  16.               |                 |
  17.    29CF       |      E3         |   1C
  18.               |                 |
  19.    29D0       |      D7         |   00
  20.               |                 |
  21.    29ED       |      E8         |   E9
  22.               |                 |
  23.    29EE       |      F5         |   05  To ALWAYS include error messages or...
  24.               |                 |   08  To NEVER include error messages.
  25.               |                 |
  26.    29EF       |      02         |   00
  27.  
  28.  
  29.                        - Generic MS-DOS Implementation -
  30.      If the master from which the *COPY* you are patching was *COPIED* is
  31.      labeled MS Compatible, then implement the following patch in TURBO.COM:
  32.  
  33. At Location   |   Change From   |   To
  34. -------------------------------------------
  35.               |                 |
  36.    2716       |      E8         |   E9
  37.               |                 |
  38.    2717       |      0C         |   1C
  39.               |                 |
  40.    2718       |      DB         |   00
  41.               |                 |
  42.    2735       |      E8         |   E9
  43.               |                 |
  44.    2736       |      F5         |   05  To ALWAYS include error messages or...
  45.               |                 |   08  To NEVER include error messages.
  46.               |                 |
  47.    2737       |      02         |   00
  48.  
  49.  
  50. Those who are novices when it comes to using DEBUG, might find file DEBUG.HLP
  51. in DL0 interesting.
  52.