home *** CD-ROM | disk | FTP | other *** search
- page 58,132
-
- ;/*
- ;** font8x8.asm
- ;** contains: font8x8()
- ;*/
- ifndef _LCODE
- include model.h
- endif
- include prologue.h
- name vidtype
-
- VIDEOINT equ 010h ;Video software interrupt #
-
- pseg cfont8x8
-
- ;/*
- ;** void
- ;** font8x8(void)
- ;**
- ;** ARGUMENT(s)
- ;** none
- ;**
- ;** DESCRIPTION
- ;** Sets small (8x8) font. This allows 43 lines to be displayed on an EGA and
- ;** 50 lines to be displayed on a VGA.
- ;**
- ;** RETURNS
- ;** void
- ;**
- ;** AUTHOR
- ;** "" Wed 07-Dec-1988 11:15:14
- ;** Copyright (C)1988-1990 Greenleaf Software Inc. All Rights Reserved.
- ;**
- ;** MODIFICATIONS
- ;**
- ;*/
- cproc font8x8
- mov ax,1112h ;set 8x8 font function
- xor bl,bl
- int VIDEOINT
- cproce
- endps
- end
-