home *** CD-ROM | disk | FTP | other *** search
- PRODUCT : TURBO PASCAL NUMBER : 113
- VERSION : 2.00x
- OS : MS-DOS, IBM PC
- DATE : April 7, 1986
-
- TITLE : INTERRUPT 3 PATCH
-
- Turbo Pascal redefines the interrupt 3 vector to its own
- interrupt service routine used for handling Ctrl-C. However, the
- vector is permanently initialized to that interrupt routine even
- though the "U-" directive is specified.
-
- This patch will permanently keep the Ctrl-C vector from being
- initialized, but will allow the use of DEBUG break points.
-
- Use the DOS utility, DEBUG, to apply the following patch to a
- copy of your .COM file. Copy DEBUG.COM into the directory (or
- onto the diskette) where your working copy of .COM is located.
- At the DOS prompt, type the following information exactly as it
- appears. (Conclude each line by pressing <Enter>.)
-
- Note: 1. DEBUG is not sensitive to upper and lower case. All
- addresses are listed in upper case for ease of
- readability.
-
- 2. While in DEBUG, the prompt appears as a dash (-).
-
- 3. If you do not receive the appropriate response,
- press "q", then <Enter>, to quit. Check your
- version numbers and, if correct, try again.
-
-
-
- YOU TYPE THIS APPEARS
-
- DEBUG TURBO.COM -
- e0BE2 XXXX:0EB2 E8.
- 90<Space> DC.
- 90<Space> FD.
- 90<Enter> -
- w<Enter> writing xxxx bytes
- q<Enter> DOS prompt
-
-
- For Generic versions of Turbo Pascal:
-
- YOU TYPE THIS APPEARS
-
- DEBUG TURBO.COM -
- e0922 xxxx:0922 E8.
- 90<Space> D1.
- 90<Space> FD.
- 90<Enter> -
- w<Enter> writing xxxx bytes
- q<Enter> DOS prompt
-
-