#include <16F876a.h>
#device adc = 10
#use delay (CLOCK = 4000000)
#fuses XT,NOWDT,NOLVP
#include "lcd.c"
void main()
{
lcd_init();
printf (lcd_putc,"RALF2");
while(1);
}
//#locate lcd = getenv("sfr:PORTC") // This puts the entire structure over the port
#ifdef __pch__
#locate lcd = 0xf83
#else
#locate lcd = 7
#endif
#define set_tris_lcd(x) set_tris_c(x)
#endif