//
// Hello Embedded World
//
// Hello4.c learning to control the Analog Pins
//

#include <p24fj128ga010.h>

main()
{
	TRISB = 	0;		// all PORTA as output
	AD1PCFG = 0xffff;	// all PORTB as digital
	PORTB = 	0xff;	
}
