home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l076 / 1.ddi / README.TRU < prev    next >
Encoding:
Text File  |  1988-12-13  |  9.4 KB  |  316 lines

  1.  
  2. This file contains a few last minute notes concerning True BASIC
  3. version 2.1 for the IBM PC.
  4.  
  5. 1) Note that using the INSTALL file to copy files from the
  6.    release disk to your hard disk can cause a bit of confusion
  7.    if you use it while in a directory other than the root.  INSTALL
  8.    creates subdirectories below the current directory to contain
  9.    HELP, DO and LIBRARY files.  Since True BASIC normally looks
  10.    for the these files in \TBHELP\, \TBDO\, and \TBLIBS\, it won't
  11.    find them if they wind up in \XXX\TBHELP\, etc.  In this case
  12.    you should change the aliases for these directories to point at
  13.    the right place.  You also might want to set up a startup file
  14.    so that these aliases are set up automatically.  Check the user
  15.    guide for information on aliases and startup scripts.
  16.  
  17. 2) A note on the ALIAS command.  The users guide gives examples
  18.    an alias commands:
  19.  
  20.       alias library,a:,b:,c:
  21.       alias library,c:mylibs,c:util\libs
  22.  
  23.    Any name given in an ALIAS command should contain a complete
  24.    pathname that ends in a \.  So the examples should read:
  25.  
  26.       alias library,a:\,b:\,c:\
  27.       alias library,c:\mylibs\,c:\util\libs\
  28.  
  29. 3) The 'DO TRACE' program has a few new features.
  30.  
  31.       It can now trace line-numbered programs.
  32.  
  33.       It traces module initialization sections.
  34.  
  35.       It can now handle 'OPEN #1: SCREEN ...' followed by
  36.       'PRINT #1: ...'.  This is done by changing the open
  37.       screen window coordinates to match those of the output
  38.       window used by the trace package.  This has a side
  39.       effect of clearing the trace output window.  It also
  40.       has a stranger side effect... since each screen that
  41.       is opened on top of the trace output window maintains
  42.       its own x,y coordinates for printing, programs that
  43.       open multiple screens can print over each others output.
  44.  
  45.       There are now facilities for saving the trace output
  46.       to a file.  For details see the end of this file.
  47.       
  48. 4) A note for assembly programmers.
  49.  
  50.    The technique for creating routine headers for assembly language
  51.    programs described in the True BASIC Users Guide doesn't work with
  52.    the Microsoft Macro Assembler version 5.1.  This version doesn't
  53.    allow the 'bswap' macro to be used with an address constant.
  54.    
  55.    One way to deal with this problem is to subtract an address constant
  56.    of zero from that value - then bswap works ok.
  57.    
  58.    What follows is a copy of an example from the Users Guide, and
  59.    a version changed so that it works with the new assembler.  The
  60.    changed lines are marked by '***'.
  61.  
  62. ;
  63. ; Demo program from IBM PC users guide
  64. ;
  65. ; Bswap inverts the 2 bytes of the argument.
  66. ;
  67. ; The PC wants 2 byte (word) values inverted so that the low order
  68. ; bits come first.  True BASIC wants the high order bits first.
  69. bswap    macro    word
  70.          db       high word, low word
  71. endm
  72.  
  73. arg1     equ      dword ptr 0
  74. arg2     equ      dword ptr 4
  75.  
  76. code     segment
  77.          assume   cs:code
  78.          org      0
  79. ;
  80. ; Routine preface
  81. ;
  82.          db       0d4h,043h
  83.          dw       0
  84.          bswap    <offset tlen>   ; 'tlen' is the routines' size
  85.          db       0,61h
  86.          bswap    2               ; size of the name
  87.          db       "in"
  88.          bswap    3               ; size of the argument description
  89.          db       "fn,"
  90. ;
  91. ; Routine starts here
  92. ;
  93. input    proc     far
  94.          lds      bx,[bp+arg1]
  95.          mov      dx,word ptr[bx-2]
  96.          in       al,dx
  97.          xor      ah,ah
  98.          lds      bx,[bp+arg2]
  99.          mov      word ptr[bx],-1
  100.          mov      word ptr[bx-2],ax
  101.          ret
  102. input    endp
  103. tlen:
  104.  
  105. code     ends
  106.          end
  107.  
  108. ;                                 
  109. ; Here's the same routine with the changes marked with '***'
  110. ;
  111. bswap    macro    word
  112.          db       high word, low word
  113. endm
  114.  
  115. arg1     equ      dword ptr 0
  116. arg2     equ      dword ptr 4
  117.  
  118. code     segment
  119.          assume   cs:code
  120.          org      0
  121. rstart   equ      $               ; define beginning ***
  122. ;
  123. ; Routine preface
  124. ;
  125.          db       0d4h,043h
  126.          dw       0
  127.          bswap    <offset tlen>   ; 'tlen' is the routines' size
  128.          db       0,61h
  129.          bswap    2               ; size of the name
  130.          db       "in"
  131.          bswap    3               ; size of the argument description
  132.          db       "fn,"
  133. ;
  134. ; Routine starts here
  135. ;
  136. input    proc     far
  137.  
  138. codestart equ     $
  139.  
  140.          lds      bx,[bp+arg1]
  141.          mov      dx,word ptr[bx-2]
  142.          in       al,dx
  143.          xor      ah,ah
  144.          lds      bx,[bp+arg2]
  145.          mov      word ptr[bx],-1
  146.          mov      word ptr[bx-2],ax
  147.          ret
  148. input    endp
  149.  
  150. rend     equ      $                   ; routine ends   ***
  151. tlen     equ      rend-rstart         ; routine length ***
  152.  
  153. code     ends
  154.          end
  155.  
  156. 5) Trace log feature...
  157.  
  158. The DO TRACE program has been enhanced to allow "logging"
  159. of trace data.  This trace information gives a record of the
  160. line numbers executed, and can show a history of variable
  161. values alongside the line numbers.
  162.  
  163.  
  164. Logging All Variables
  165.  
  166. It's easy to log all line numbers and variable values.
  167. There are three possibilities:
  168.  
  169.       DO TRACE,LOG           log everything to the screen
  170.       DO TRACE,PLOG          log everything to printer
  171.       DO TRACE,LOG TO file   log everything to text file
  172.  
  173.  
  174. Logging Selected Variables
  175.  
  176. To log selected variable values, list those variables after
  177. the keyword LOG.  To refer to variables in external routines,
  178. precede the variable name with the routine name and a colon (:).
  179. The examples below trace the variables A and S$ in the main
  180. program, X in subroutine SUB, and Y in function FN$.
  181.  
  182.       DO TRACE,LOG(a,s$,sub:x,fn$:y)
  183.       DO TRACE,LOG(a,s$,sub:x,fn$:y) TO file
  184.  
  185.  
  186. Logging Only Line Numbers
  187.  
  188. To log only line numbers -- no variables -- use the keyword
  189. LOG(#) instead of LOG.  For instance:
  190.  
  191.       DO TRACE,LOG(#)
  192.       DO TRACE,PLOG(#)
  193.       DO TRACE,LOG(#) TO file
  194.  
  195.  
  196. Logging until a BREAK Condition
  197.  
  198. You may also ask the the trace stop when some condition becomes
  199. true.  This makes it easy to pinpoint an error, and then backtrack
  200. to find its causes.  Use the LOGBREAK or PLOGBREAK keywords,
  201. and give the break condition first in the list of trace variables.
  202. You may create compound conditions by using AND, OR, parentheses,
  203. etc, as in True BASIC conditions.
  204.  
  205.       DO TRACE,LOGBREAK(i=0 or j=0,j,k)
  206.       DO TRACE,PLOGBREAK(x^2+y^2<1)
  207.       DO TRACE,LOGBREAK(name$="Hals") TO file
  208.  
  209.  
  210. Turning TRACE On and Off
  211.  
  212. Your program can turn tracing on/off.  If you have a program
  213. that runs for a long time, you can turn tracing on for only
  214. the part of the program that interests you.  This avoids
  215. enormous logging files.
  216.  
  217. To turn tracing on, CALL SetTrace(f) with f<>0.  To turn it
  218. off, use f=0.  You can also CALL AskTrace(f) to find the current
  219. value of the tracing flag.
  220.  
  221. SetTrace and AskTrace are part of the TRACE package.  You can
  222. leave them in your program permanently if you LOAD the trace
  223. package before you run your program.  Otherwise you must remove
  224. them before you RUN your program.
  225.  
  226. Example:
  227.  
  228.      for i = 1 to 1000
  229.          if i>995 then call SetTrace(1)
  230.          let x = 1/(i-1000)
  231.      next i
  232.      end
  233.  
  234. Note:  Since SetTrace and AskTrace use numbers as flags -- not
  235. logical values -- you can construct "levels" of tracing.  For
  236. instance, to have 5 trace levels, where trace flag N always
  237. shows all levels <= N, you could use:
  238.  
  239.      call SetTrace(3)        !trace levels <= 3
  240.      call A
  241.      call B
  242.      end
  243.  
  244.      sub A                   !runs at trace level 2
  245.         call AskTrace(lev)
  246.         if lev<2 then call SetTrace(0)
  247.         ....
  248.         call SetTrace(lev)
  249.      end sub
  250.  
  251.      sub B                   !runs at trace level 4
  252.         call AskTrace(lev)
  253.         if lev<4 then call SetTrace(0)
  254.         ....
  255.         call SetTrace(lev)
  256.      end sub
  257.  
  258.  
  259. Format of the LOG Output
  260.  
  261. The LOG output has the same format, whether it goes to the
  262. screen, printer, or disk.  Each line executed is logged
  263. on a new line by an asterisk and the line number: "*15"
  264. for example.
  265.  
  266. If that line assigns a value to a traced variable, the
  267. variable's uppercase name and value appears on that line.
  268. Only the first 50 characters of a string's value are shown;
  269. if the string is longer than 50 characters, the logged
  270. value ends with "..." to show that some has been omitted.
  271.  
  272. If the line assigns to multiple variables, each variable
  273. is logged on its own line.  Only the first line contains
  274. the line number.
  275.  
  276. Finally, CALL and DRAW statements are logged twice: once
  277. when the statement is executed, and once when control
  278. returns from the called routine.  This makes it clear that
  279. the routine has returned to its caller, and also gives a
  280. place to record the (new) values of the parameters -- which
  281. may have been changed by the CALL or DRAW.
  282.  
  283. Example Program:
  284.  
  285.  1    for i = 1 to 2
  286.  2        call sub(a,b)
  287.  3    next i
  288.  4    end
  289.  5    
  290.  6    sub sub(x,y)
  291.  7        let x = x+1
  292.  8    end sub
  293.  
  294. Output from DO TRACE,LOG:
  295.  
  296.       *1       I = 1
  297.       *2
  298.       *6       X = 0
  299.                Y = 0
  300.       *7       X = 1
  301.       *8
  302.       *2       A = 1
  303.                B = 0
  304.       *3       I = 2
  305.       *2
  306.       *6       X = 1
  307.                Y = 0
  308.       *7       X = 2
  309.       *8
  310.       *2       A = 2
  311.                B = 0
  312.       *3       I = 3
  313.       *4
  314.  
  315.