Hi to all in this forum,
I am using pic12f675 and the PICKIT_3 programmer.
I would like to use all the six available pins as I/O and so I wrote this small program:

@ __config _INTRC_OSC_NOCLKOUT & _WDT_ON & _MCLRE_OFF & _CP_OFF
OSCCAL=64
include "modedefs.bas"

' Set Debug pin port ________________________________________
DEFINE DEBUG_REG PORTA
' Set Debug pin bit _________________________________________
DEFINE DEBUG_BIT 0
' Set Debug baud rate _________________________________________
DEFINE DEBUG_BAUD 9600
' Set Debug mode: 0 = true, 1 = inverted ______________________
DEFINE DEBUG_MODE 1

PAUSE 500 : DEBUG 13,10
PU VAR GPIO.2

MAIN: ' **************************************************

IF PU=0 THEN
DEBUG "low" ,13,10
ENDIF

IF PU=1 THEN
DEBUG "high",13,10
ENDIF

GOTO MAIN ' **************************************************

Debug works well but there is no way to read the GPIO.2 status since the terminal reports just LOW state.
Any assistance please ?
Thanks in advance .
Regards,
Ambrogio