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

  1. PRODUCT : TURBO PASCAL     NUMBER : 113
  2. VERSION : 2.00x 
  3.      OS : MS-DOS, IBM PC
  4.    DATE : April 7, 1986
  5.  
  6.   TITLE : INTERRUPT 3 PATCH
  7.  
  8. Turbo  Pascal  redefines  the  interrupt  3  vector  to  its  own 
  9. interrupt service routine used for handling Ctrl-C.  However, the 
  10. vector  is permanently initialized to that interrupt routine even 
  11. though  the "U-" directive is specified.   
  12.  
  13. This  patch  will permanently keep the Ctrl-C vector  from  being 
  14. initialized, but will allow the use of DEBUG break points.
  15.  
  16. Use  the DOS utility,  DEBUG,  to apply the following patch to  a 
  17. copy  of your .COM file.   Copy DEBUG.COM into the directory  (or 
  18. onto  the diskette) where your working copy of  .COM is  located. 
  19. At  the DOS prompt,  type the following information exactly as it 
  20. appears. (Conclude each line by pressing <Enter>.) 
  21.  
  22. Note:   1.   DEBUG is not sensitive to upper and lower case.  All              
  23. addresses  are  listed  in upper case  for  ease  of              
  24. readability.
  25.  
  26.         2.   While in DEBUG, the prompt appears as a dash (-).
  27.  
  28.         3.   If  you  do  not receive the  appropriate  response,              
  29. press  "q",  then  <Enter>,  to  quit.   Check  your                                      
  30. version numbers and, if correct, try again.
  31.  
  32.  
  33.  
  34. YOU TYPE                 THIS APPEARS
  35.  
  36. DEBUG TURBO.COM          -
  37. e0BE2                    XXXX:0EB2 E8.
  38. 90<Space>                DC.
  39. 90<Space>                FD.
  40. 90<Enter>                -
  41. w<Enter>                 writing xxxx bytes
  42. q<Enter>                 DOS prompt
  43.  
  44.  
  45. For Generic versions of Turbo Pascal:
  46.  
  47. YOU TYPE                 THIS APPEARS
  48.  
  49. DEBUG TURBO.COM          -
  50. e0922                    xxxx:0922 E8.
  51. 90<Space>                D1.
  52. 90<Space>                FD.
  53. 90<Enter>                -
  54. w<Enter>                 writing xxxx bytes
  55. q<Enter>                 DOS prompt
  56.  
  57.