!*! Updated on 06-Oct-91 at 3:17 AM by James A. Jarboe I V; edit time: 0:08:41 !**************************************************************************** ! * ! STDMAC.BSI - Standard Variables for use with STDMAC.MAC Macro's * ! * !**************************************************************************** ! ! Should always be included into a d/BASIC program when using the ! d/BASIC macro file STDMAC.MAC. ! ! This program was designed,implemented ! ! James A. Jarboe IV GR/AM ! Educational Video Network, Inc. ! 1401 19th Street ! Huntsville, TX 77340 ! 1-409-295-5767 ! ! macro.file STDMAC ! Include Standard Macros. ! float i,x ! Misc. floating points usually always used. map1 macro'x, f, 6 ! Misc. Macro counting variable. map1 macro'anykey, f, 6 ! Returned value of any.key press. map1 macro'x$, s, 512 ! Misc. Macro String variable. map1 error'occured, f, 6 ! Error condition: ! .true = an error occured ! .false = no error occured map1 no'var ! Used to set flags for macros. map2 no'blink, f, 6, (2^0) ! No blinking display. map2 no'delete, f, 6, (2^1) ! No file deletion. map2 no'crtoff, f, 6, (2^2) ! No CRT blinking between masks. map2 no'status, f, 6, (2^3) ! No Status lines. map2 no'clear, f, 6, (2^4) ! No Clear Screen. map2 no'funkey, f, 6, (2^5) ! No set function key handling. !!!!!!!!!!!!!!!!!!!!!!!!!!! End of STDBAC.BSI !!!!!!!!!!!!!!!!!!!!!!!!!!!!! .