00001 /*@A (C) 1992 Allen I. Holub */ 00002 #include "termlib.h" 00003 #include "video.h" 00004 00005 int dv_init(void) 00006 { 00007 dv_Screen = (DISPLAY *)MONBASE ; 00008 return( 1 ); 00009 } 00010 00011 void dv_screen_attrib(int *nCols, int *nRows) 00012 { 00013 *nCols = NUMCOLS; 00014 *nRows = NUMROWS; 00015 } 00016