home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / INFO / TURBOPAS / YESNO302.ZIP / YESNO3.ZAP < prev   
Encoding:
Text File  |  1987-09-25  |  10.5 KB  |  261 lines

  1. VERSION:  3.00B, 3.01A, 3.02A
  2.      OS:  PC-DOS, MS-DOS, CP/M-86
  3.    DATE:  April 18, 1985, September 25, 1987
  4.   TITLE:  Skip "Include Error Messages?" Prompt
  5.  
  6. -------------------------------------------------------------------
  7.  
  8. This little patch bypasses the request,  "Include error messages?",
  9. and either automatically loads the error message file, or skips it.
  10.  
  11.  
  12. ERROR MESSAGES NOTE:   The new version of TINST lets you  designate
  13. the  path  to  the  error messages in case they  are  stored  in  a
  14. directory  other  than the one active at the time Turbo is  loaded.
  15.  
  16.  
  17. -------------------------------------------------------------------
  18.  
  19. A  total  of  eighteen  (18!)  different  patches are listed below.
  20. There is one patch for  each real number implementation  (software,
  21. 8087, and BCD), for each operating system  (PC-DOS, generic MS-DOS,
  22. and CP/M-86),  for Turbo Pascal versions 3.00x and 3.01x.   Be sure
  23. that the patch you use matches the file that you are patching.  For
  24. instance, if you have the normal and BCD versions 3.00B for PC-DOS,
  25. you would use  the patches labled  'TURBO.COM 3.00x (PC-DOS)',  and
  26. 'TURBOBCD.COM 3.00x (PC-DOS)'.
  27.  
  28. -------------------------------------------------------------------
  29.  
  30.     Note: Always make a backup copy of any software before patching
  31.           it.   Label  disks that contain patched software as  this
  32.           could  concievably  have  a bearing  on  future  trouble-
  33.           shooting.
  34.  
  35. -------------------------------------------------------------------
  36.  
  37. For some  general  beginners' tips on using  DEBUG,  see  the  file
  38. DEBUG.LTR in Data Library DL 0.
  39.  
  40. -------------------------------------------------------------------
  41.  
  42. Note for  CP/M-86  patches:  you must not give the file name on the
  43. DDT86 command line.   Rather,  start DDT86 with no file name,  then
  44. use the  R  command to read in the .CMD file.   This prevents DDT86
  45. from interpreting the file as a  .CMD file,  which would change the
  46. patch locations.
  47.  
  48.   A>DDT86
  49.   -Rfilename.CMD
  50.   -(do the patches)
  51.   -Wfilename.CMD
  52.   -^C
  53.  
  54. -------------------------------------------------------------------
  55.  
  56.                                TURBO.COM 3.00x (PC-DOS)
  57.  
  58.   File           Address   Old values    New for NO    New for YES
  59.   TURBO.COM      2E98          E8            24            0C
  60.                  2E99          C7            00            FF
  61.                  2E9A          DB            EB            EB
  62.                  2E9B          0D            1E            1E
  63.  
  64.  
  65.                                TURBO-87.COM 3.00x (PC-DOS)
  66.  
  67.   File           Address   Old values    New for NO    New for YES
  68.   TURBO-87.COM   2961          E8            24            0C
  69.                  2962          FE            00            FF
  70.                  2963          E0            EB            EB
  71.                  2964          0D            1E            1E
  72.  
  73.  
  74.                                TURBOBCD.COM 3.00x (PC-DOS)
  75.  
  76.   File           Address   Old values    New for NO    New for YES
  77.   TURBOBCD.COM   2DB9          E8            24            0C
  78.                  2DBA          A6            00            FF
  79.                  2DBB          DC            EB            EB
  80.                  2DBC          0D            1E            1E
  81.  
  82.  
  83.   -----------------------------------------------------------------
  84.  
  85.  
  86.                                TURBO.COM 3.00x (generic MS-DOS)
  87.  
  88.   File           Address   Old values    New for NO    New for YES
  89.   TURBO.COM      2B97          E8            24            0C
  90.                  2B98          C0            00            FF
  91.                  2B99          DB            EB            EB
  92.                  2B9A          0D            1E            1E
  93.  
  94.  
  95.                                TURBO-87.COM 3.00x (generic MS-DOS)
  96.  
  97.   File           Address   Old values    New for NO    New for YES
  98.   TURBO-87.COM   2660          E8            24            0C
  99.                  2661          F7            00            FF
  100.                  2662          E0            EB            EB
  101.                  2663          0D            1E            1E
  102.  
  103.  
  104.                                TURBOBCD.COM 3.00x (generic MS-DOS)
  105.  
  106.   File           Address   Old values    New for NO    New for YES
  107.   TURBOBCD.COM   2AB8          E8            24            0C
  108.                  2AB9          9F            00            FF
  109.                  2ABA          DC            EB            EB
  110.                  2ABB          0D            1E            1E
  111.  
  112.  
  113.   -----------------------------------------------------------------
  114.  
  115.  
  116.                                TURBO.CMD 3.00x (CP/M-86)
  117.  
  118.   File           Address   Old values    New for NO    New for YES
  119.   TURBO.CMD      2AEB          E8            24            0C
  120.                  2AEC          31            00            FF
  121.                  2AED          DC            EB            EB
  122.                  2AEE          0D            1E            1E
  123.  
  124.  
  125.                                TURBO-87.CMD 3.00x (CP/M-86)
  126.  
  127.   File           Address   Old values    New for NO    New for YES
  128.   TURBO-87.CMD   2581          E8            24            0C
  129.                  2582          9B            00            FF
  130.                  2683          E1            EB            EB
  131.                  2684          0D            1E            1E
  132.  
  133.  
  134.                                TURBOBCD.CMD 3.00x (CP/M-86)
  135.  
  136.   File           Address   Old values    New for NO    New for YES
  137.   TURBOBCD.CMD   29FE          E8            24            0C
  138.                  29FF          1E            00            FF
  139.                  2A00          DD            EB            EB
  140.                  2A01          0D            1E            1E
  141.  
  142.  
  143. -------------------------------------------------------------------
  144.  
  145.  
  146.                                TURBO.COM 3.01x (PC-DOS)
  147.  
  148.   File           Address   Old values    New for NO    New for YES
  149.   TURBO.COM      2F5E          E8            24            0C
  150.                  2F5F          20            00            FF
  151.                  2F60          DB            EB            EB
  152.                  2F61          0D            1E            1E
  153.  
  154.  
  155.                                TURBO-87.COM 3.01x (PC-DOS)
  156.  
  157.   File           Address   Old values    New for NO    New for YES
  158.   TURBO-87.COM   2A27          E8            24            0C
  159.                  2A28          57            00            FF
  160.                  2A29          E0            EB            EB
  161.                  2A2A          0D            1E            1E
  162.  
  163.  
  164.                                TURBOBCD.COM 3.01x (PC-DOS)
  165.  
  166.   File           Address   Old values    New for NO    New for YES
  167.   TURBOBCD.COM   2E7F          E8            24            0C
  168.                  2E80          FF            00            FF
  169.                  2E81          DB            EB            EB
  170.                  2E82          0D            1E            1E
  171.  
  172.  
  173.   -----------------------------------------------------------------
  174.  
  175.  
  176.                                TURBO.COM 3.01x (generic MS-DOS)
  177.  
  178.   File           Address   Old values    New for NO    New for YES
  179.   TURBO.COM      2C40          E8            24            0C
  180.                  2C41          19            00            FF
  181.                  2C42          DB            EB            EB
  182.                  2C43          0D            1E            1E
  183.  
  184.  
  185.                                TURBO-87.COM 3.01x (generic MS-DOS)
  186.  
  187.   File           Address   Old values    New for NO    New for YES
  188.   TURBO-87.COM   2709          E8            24            0C
  189.                  270A          50            00            FF
  190.                  270B          E0            EB            EB
  191.                  270C          0D            1E            1E
  192.  
  193.  
  194.                                TURBOBCD.COM 3.01x (generic MS-DOS)
  195.  
  196.   File           Address   Old values    New for NO    New for YES
  197.   TURBOBCD.COM   2B61          E8            24            0C
  198.                  2B62          F8            00            FF
  199.                  2B63          DB            EB            EB
  200.                  2B64          0D            1E            1E
  201.  
  202.  
  203.   -----------------------------------------------------------------
  204.  
  205.                                TURBO.CMD 3.01x (CP/M-86)
  206.  
  207.   File           Address   Old values    New for NO    New for YES
  208.   TURBO.CMD      2AEB          E8            24            0C
  209.                  2AEC          34            00            FF
  210.                  2AED          DC            EB            EB
  211.                  2AEE          0D            1E            1E
  212.  
  213.  
  214.                                TURBO-87.CMD 3.01x (CP/M-86)
  215.  
  216.   File           Address   Old values    New for NO    New for YES
  217.   TURBO-87.CMD   2601          E8            24            0C
  218.                  2602          1E            00            FF
  219.                  2603          E1            EB            EB
  220.                  2604          0D            1E            1E
  221.  
  222.  
  223.                                TURBOBCD.CMD 3.01x (CP/M-86)
  224.  
  225.   File           Address   Old values    New for NO    New for YES
  226.   TURBOBCD.CMD   29FE          E8            24            0C
  227.                  29FF          21            00            FF
  228.                  2A00          DD            EB            EB
  229.                  2A01          0D            1E            1E
  230.  
  231.  
  232. -------------------------------------------------------------------
  233.  
  234.  
  235.                                TURBO.COM 3.02A (PC-DOS)
  236.  
  237.   File           Address   Old values    New for NO    New for YES
  238.   TURBO.COM      2F34          E8            24            0C
  239.                  2F35          0D            00            FF
  240.                  2F36          DB            EB            EB
  241.                  2F37          0D            1E            1E
  242.  
  243.  
  244.                                TURBO-87.COM 3.02A (PC-DOS)
  245.  
  246.   File           Address   Old values    New for NO    New for YES
  247.   TURBO-87.COM   29FA          E8            24            0C
  248.                  29FB          47            00            FF
  249.                  29FC          E0            EB            EB
  250.                  29FD          0D            1E            1E
  251.  
  252.  
  253.                                TURBOBCD.COM 3.02A (PC-DOS)
  254.  
  255.   File           Address   Old values    New for NO    New for YES
  256.   TURBOBCD.COM   2E56          E8            24            0C
  257.                  2E57          EB            00            FF
  258.                  2E58          DB            EB            EB
  259.                  2E59          0D            1E            1E
  260.  
  261.