Hi all

the folowing one line "lcdout" command works with any other pic
i program but it won't work with a 18f4610, WHY ?

All input apreciated.
---------------
Bri

DEFINE LCD_DREG PORTD
DEFINE LCD_DBIT 4
DEFINE LCD_RSREG PORTE
DEFINE LCD_RSBIT 0
DEFINE LCD_EREG PORTE
DEFINE LCD_EBIT 1
DEFINE OSC 8

ADCON1 = 7

Pause 1000

Main:

LCDOut $fe,1,"hello"

Stop

End