Hi,
I'm not sure I understand.
You have 10bits of data from the ADC and wants to output those 10bits on individual port pins...or....??
Code:
PORTA = ADRESL		'Lower byte on Port A
PORTB.0 = ADRESH.0	'Higher two bits on PortB.0...
PORTB.1 = ADRESH.1	...and PortB.1
/Henrik Olsson.