Newbie question once more.. Why cannot I write like:
LCD_Present VAR PORTA.0
IF LCD_Present Gosub LCD_Subroutine : ENDIF
_____________^^^
I know I can do it by:
IF LCD_Present=1 THEN
Gosub LCD_Subroutine
ENDIF
But it is two extra lines in code.. IMHO
Does it have to be If..Then goto (label)
/MRa
Bookmarks