//
// Hello Embedded World
//
// Hello2.c controlling PORTA pin direction
//

#include <p24fj128ga010.h>

main()
{
    TRISA =     0;      // configure all PORTA pins as outputs
	PORTA = 	0xff;	
}
