#include "glcd.h" //User defined LCD library which contains the lcd routines #include "delay.h" /* start the main program */ void main() { /* Initialize the glcd before displaying any thing on the lcd */ GLCD_Init(); GLCD_Printf("Interfacing\n\n"); GLCD_Printf(" KS108 128x64\n\n"); GLCD_Printf(" With 8051"); GLCD_GoToLine(6); GLCD_Printf(" ExploreEmbedded"); while(1); }