home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / progc / c_all592.arj / TI361.ASC < prev    next >
Text File  |  1991-08-27  |  2KB  |  133 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  TURBO BASIC                           NUMBER  :  361
  9.   VERSION  :  1.0
  10.   OS  :  PC-DOS
  11.   DATE  :  July 22, 1987                           PAGE  :  1/2
  12.  
  13.   TITLE    :  PATCH FOR INPUTTING EXTENDED ASCII CHARACTERS
  14.  
  15.  
  16.  
  17.  
  18.   Alt-Char patch to TURBO BASIC 1.0
  19.  
  20.   Turbo  Basic  currently  ignores non-standard characters (outside
  21.   the range of 20h - 7Eh) ) entered via an  INPUT  statement.  This
  22.   patch corrects  the  problem,  allowing  those  characters  to be
  23.   entered properly.
  24.  
  25.   How to install the patch:
  26.  
  27.   1.      Rename the compiler file (TB.EXE) to TB.ABC using the DOS
  28.    'ren' command:
  29.  
  30.           ren TB.EXE TB.ABC
  31.  
  32.   2.      Start up DEBUG by typing DEBUG TB.ABC at  the  DOS prompt
  33.           (>).
  34.  
  35.   3.      Display the contents of the CS register by  typing  the R
  36.           command at the DEBUG prompt (-):
  37.  
  38.           R CS
  39.  
  40.   4.      Use the Hexarithmetic  command  to add 1000 (hex) to this
  41.           value. For example:
  42.  
  43.           -R CS
  44.           CS 34F7
  45.           : <--- you press RETURN here
  46.           -H 34F7 1000
  47.           44F7 24F7
  48.  
  49.           ^---- 44F7 is the sum of CS (34F7) and 1000  (hex)
  50.  
  51.   5.      Next, use the sum above  as the segment for the following
  52.           Enter command:
  53.  
  54.           e xxxx:4e34 d8
  55.  
  56.           ^---- where this is the sum from above (44F7  in example)
  57.  
  58.   6.      Now save the file  using  the  'w'  command (at the DEBUG
  59.           prompt, enter:
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.   PRODUCT  :  TURBO BASIC                           NUMBER  :  361
  75.   VERSION  :  1.0
  76.   OS  :  PC-DOS
  77.   DATE  :  July 22, 1987                           PAGE  :  1/2
  78.  
  79.   TITLE    :  PATCH FOR INPUTTING EXTENDED ASCII CHARACTERS
  80.  
  81.  
  82.  
  83.  
  84.           w
  85.  
  86.   7.      Quit  the debugger by entering the  'q'  command  at  the
  87.           DEBUG  prompt:
  88.  
  89.           q
  90.  
  91.   8.      Finally, rename TB.ABC back to TB.EXE:
  92.  
  93.           ren TB.ABC TB.EXE
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.