I've set up and ADC interrupt using DT_INST-14 with the following handler code:

Code:
' ***************************************************************
' [A/D - interrupt handler]
' ***************************************************************
ADC_change:
  PAUSEUS 50              ' Wait for A/D channel acquisition time
  ADCON0.1 = 1           ' Start conversion
  WHILE ADCON0.1       ' Wait for it to complete
  WEND
  ADCInVal = ADRESH

@ INT_RETURN
Is that right? I just need 8-bit ADC resolution (0-255)