Hello,

I am trying to figure how to use MPLAB in windows 7. Have installe MPLAB version 8.63 along with picbasic pro 2.60C. My following code compiles with no error:
'LCD testing program

OSCCON = %01110000 '8 Mhz
DEFINE OSC 8

'/////////////////////////
'// LCD configuration //
'/////////////////////////

DEFINE LCD_DREG PORTB ' Set LCD Data port
DEFINE LCD_DBIT 0 ' Set starting Data bit (0 or 4) if 4-bit bus
DEFINE LCD_RSREG PORTA ' Set LCD Register Select port
DEFINE LCD_RSBIT 2 ' Set LCD Register Select bit
DEFINE LCD_EREG PORTA ' Set LCD Enable port
DEFINE LCD_EBIT 3 ' Set LCD Enable bit
DEFINE LCD_BITS 4 ' Set LCD bus size (4 or 8 bits)
DEFINE LCD_LINES 2 ' Set number of lines on LCD
DEFINE LCD_COMMANDUS 2500
DEFINE LCD_DATAUS 250
DEFINE CHAR_PACING 2000
pause 1000


Mainloop:

lcdout $FE,1, " This is a test" '
lcdout $FE,$C0, "Next or Select" '
pause 200

GOTO Mainloop
End

Although it do not seems to work, nothing is showing on the LCD screen, just turns on.
Using Pic16F88. Tried different chip, rewired.. nothing. any ideas ?

Ken