home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / FFB.ZIP / FFHLP.ARC / VIDEO.HLP < prev    next >
Encoding:
Text File  |  1988-01-11  |  1.4 KB  |  35 lines

  1. \ VIDEO.HLP     Direct VIDEO Screen output              by Tom Zimmer
  2.  
  3. VIDEO-SEG       ( --- a1 )
  4.         A variable that holds the segment value of the display screen.
  5.  
  6. ATTRIB          ( --- a1 )
  7.         A variable that holds the value of the current display
  8.         attributes. The value 7 is the default for normal video.
  9.  
  10. ?VMODE          ( --- N1 )
  11.         Read the current video mode from the BIOS. A value of 7 is
  12.         normal for monochrome, and a value of 2 is a CGA board.
  13.  
  14. INITMONO        ( --- )
  15.         A defered word that gets set later, and is used to do the
  16.         monochrome display attribute control initialization
  17.         ( it sets the >ATTRIBx words. ). See the file MONOCROM.SEQ.
  18.  
  19. INITCOLOR       ( --- )
  20.         A defered word that gets set later, and is used to do the
  21.         color display attribute control initialization ( it sets the
  22.         >ATTRIBx words. ). See the file MONOCROM.SEQ, and COLOR.SEQ.
  23.  
  24. VMODE.SET       ( --- )
  25.         Set the VIDEO-SEG variable after testing the current video
  26.         mode, and perform any needed initialization required by
  27.         executing the INITMONO, or INITCOLOR as needed.
  28.  
  29. VTYPE           ( string length x y -- )
  30.         A direct screen type. The text "string" is blasted to the
  31.         current display for "length", starting at screen column x
  32.         and row y. The cursor is left positioned at the end of the
  33.         text string.
  34.  
  35.