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

  1. How to install the patch:
  2.  
  3. 1.  Rename the compiler file (TB.EXE) to TB.ABC using the DOS
  4.      'ren' command:
  5.                     ren TB.EXE TB.ABC
  6.  
  7. 2.  Start up DEBUG by typing DEBUG TB.ABC at the DOS prompt (>).
  8.  
  9. 3.  Display the contents of the CS register by typing the R
  10.      command at the DEBUG prompt (-):
  11.                      R CS
  12.  
  13. 4.  Use the Hexarithmetic command to add 1000 (hex) to this
  14.      value.  For example:
  15.                     -R CS
  16.                     CS 34F7
  17.                     :               <--- you press RETURN here
  18.                     -H 34F7 1000
  19.                     44F7  24F7
  20.  
  21.                     ^---- 44F7 is the sum of CS (34F7) and 1000
  22.                     (hex)
  23.  
  24. 5.  Next, use the sum above as the segment for the following
  25.      Enter command:
  26.                     e xxxx:4e34 d8
  27.  
  28.                     ^---- where this is the sum from above (44F7
  29.                     in example)
  30. PRODUCT  :  TURBO BASIC                           NUMBER  :  361
  31. VERSION  :  1.0
  32.      OS  :  PC-DOS
  33.    DATE  :  July 22, 1987                           PAGE  :  2/2
  34.  
  35. TITLE    :  PATCH FOR INPUTTING EXTENDED ASCII CHARACTERS
  36. ----------------------------------------------------------------
  37.  
  38. 6.  Now save the file using the 'w' command (at the DEBUG    
  39.      prompt, enter:
  40.                     w
  41.  
  42. 7.  Quit the debugger by entering the 'q' command at the DEBUG
  43.      prompt:
  44.                     q
  45.  
  46. 8.  Finally, rename TB.ABC back to TB.EXE:
  47.                     ren TB.ABC TB.EXE
  48.