home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / PASCAL / MISCTI10.ZIP / TI155.ASC < prev    next >
Encoding:
Text File  |  1988-06-01  |  4.7 KB  |  121 lines

  1. PRODUCT : TURBO PASCAL     NUMBER : 155
  2. VERSION : 3.00B
  3.      OS : PC-DOS (2.0 or greater)
  4.    DATE : March 13, 1986
  5.  
  6.   TITLE : SKIP "INCLUDE ERROR MESSAGES?" PROMPT
  7.  
  8. This   patch   automatically  responds  to  the  "Include   Error
  9. Messages?"  prompt  and proceeds to either load  or  exclude  the
  10. error messages (whatever is specifed by the patch you apply). The
  11. message still appears, but does not  wait  for an answer.
  12.  
  13. ERROR MESSAGES NOTE:  The new version of TINST lets you designate
  14. the  path to the error messages in the event they are stored in a
  15. directory  other than the one active at the time Turbo Pascal  is
  16. loaded.  Patches  for  three different implementations  of  Turbo
  17. Pascal  are  listed  below.   Be  sure you are  using  the  patch
  18. applicable to the version of Turbo Pascal you wish to modify.
  19.  
  20. Use  the DOS utility,  DEBUG,  to apply the following patch to  a
  21. copy  of  your  original .COM  file.   Copy  DEBUG.COM  into  the
  22. directory  (or  onto  the diskette) where your  working  copy  of 
  23. .COM  is  located.   At  the  DOS  prompt,  type  the  following
  24. information  exactly  as  it  appears.  (Conclude  each  line  by 
  25. pressing <Enter>.) 
  26.  
  27. Note:   1.   DEBUG is not sensitive to upper and lower case.  All
  28.              addresses  are  listed  in upper case  for  ease  of
  29.              readability.
  30.  
  31.         2.   While in DEBUG, the prompt will appear as a dash (-).
  32.  
  33.         3.   If  you  do not receive  the  appropriate  response,
  34.              press  "q"   followed   by   <Return>,    to   quit.
  35.              Check   your version numbers and,  if correct,   try
  36.              again.
  37.  
  38. TURBO.COM - "YES" - MESSAGES INCLUDED
  39.   
  40.      YOU TYPE                              THIS APPEARS
  41.  
  42.      DEBUG TURBO.COM<ENTER>                 -
  43.      e2E98                                  XXXX:2F5E E8.
  44.      0C<Space>                              C7
  45.      FF<Space>                              DB
  46.      EB<Space>                              OD
  47.      1E<Return>                             -
  48.      w                                      writing XXXX bytes
  49.      q                                      DOS prompt
  50.  
  51.  
  52. TURBO.COM - "NO" - MESSAGES NOT INCLUDED
  53.  
  54.      YOU TYPE                             THIS APPEARS
  55.   
  56.      DEBUG TURBO.COM<ENTER>                 -
  57.      e2E98                                  XXXX:2F5E E8.
  58.      24<Space>                              C7
  59.      00<Space>                              DB
  60.      EB<Space>                              OD
  61.      1E<Return>                             -
  62.      w                                      writing XXXX bytes
  63.      q                                      DOS prompt
  64.  
  65.  
  66. TURBO-87.COM - "YES" - MESSAGES INCLUDED
  67.  
  68.      YOU TYPE                              THIS APPEARS
  69.  
  70.      DEBUG TURBO-87.COM<ENTER>              -
  71.      e2961                                  XXXX:2961 E8.
  72.      OC<Space>                              FE
  73.      FF<Space>                              EO
  74.      EB<Space>                              OD
  75.      1E<Return>                             -
  76.      w                                      writing XXXX bytes
  77.      q                                      DOS prompt
  78.  
  79.  
  80. TURBO-87.COM - "NO" - MESSAGES NOT INCLUDED
  81.  
  82.      YOU TYPE                             THIS APPEARS
  83.  
  84.      DEBUG TURBO-87.COM<ENTER>              -
  85.      e2961                                  XXXX:2961 E8.
  86.      24<Space>                              FE
  87.      00<Space>                              EO
  88.      EB<Space>                              OD
  89.      1E<Return>                             -
  90.      w                                      writing XXXX bytes
  91.      q                                      DOS prompt
  92.  
  93.  
  94. TURBOBCD.COM - "YES" - MESSAGES INCLUDED
  95.  
  96.      YOU TYPE                              THIS APPEARS
  97.  
  98.      DEBUG TURBOBCD.COM<ENTER>              -
  99.      e2DB9                                  XXXX:2DB9 E8.
  100.      OC<Space>                              A6
  101.      FF<Space>                              DC
  102.      EB<Space>                              OD
  103.      1E<Return>                             -
  104.      w                                      writing XXXX bytes
  105.      q                                      DOS prompt
  106.  
  107.  
  108. TURBOBCD.COM  - "NO" - MESSAGES NOT INCLUDED
  109.  
  110.      YOU TYPE                              THIS APPEARS
  111.  
  112.      DEBUG TURBOBCD.COM<ENTER>              -
  113.      e2DB9                                  XXXX:2DB9 E8.
  114.      24<Space>                              A6
  115.      00<Space>                              DC
  116.      EB<Space>                              OD
  117.      1E<Return>                             -
  118.      w                                      writing XXXX bytes
  119.      q                                      DOS prompt
  120.  
  121. ..end