home *** CD-ROM | disk | FTP | other *** search
/ C++ Games Programming / CPPGAMES.ISO / fgl / fglight / exbas.arj / TEMP / 07-08.BAS < prev    next >
BASIC Source File  |  1995-01-20  |  264b  |  23 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. OldMode = FGgetmode
  6. FGsetmode 18
  7.  
  8. FGsetcolor 9
  9. FGfillpage
  10. FGsetcolor 15
  11. FGfontsize 8
  12.  
  13. FOR Row = 0 TO 59
  14.    FGlocate Row, 34
  15.    FGtext "8x8 ROM font", 12
  16. NEXT
  17. FGwaitkey
  18.  
  19. FGsetmode OldMode
  20. FGreset
  21.  
  22. END
  23.