home *** CD-ROM | disk | FTP | other *** search
- (* ****************************************************** *)
- (* FONTDEMO.PAS *)
- (* Demonstration der Unit TxtFont *)
- (* (c) 1993 Andres Cvitkovich & DMV *)
- (* ****************************************************** *)
- PROGRAM FontDemo;
-
- USES TxtFont;
-
- CONST
- LINE_ROW = 13;
-
- VAR
- i : BYTE;
-
- BEGIN
- MapFont;
- FOR i := 0 TO 255 DO
- foData [i] [LINE_ROW] := $FF;
- UnmapFont;
- END.
- (* ****************************************************** *)
- (* Ende von FONTDEMO.PAS *)