How can I do a constant to control my LCD connected to PORTC.3
I tried LCD CON PORTC.3 but it didn't work.

For example
How can I control my LCD by doing something like this
SEROUT LCD,6, ["Hello World"]

{where LCD is the constant representing PORTC.3}

Instead of doing this
SEROUT portc.3,6 ,["Hello World"]


I am using a PIC16f616 with a serial 16x2 LCD display.

The LCD cannot be connected to a PORT B pin because the PIC16f616 has no portB, so it must be portc.3

Thank You

,Eric