//
// Hello Embedded World
//
// Hello3.c Testing PORTB, another surprise!
//

#include <p24fj128ga010.h>

main()
{
    TRISB =     0;      // configure all PORTB pins as outputs
	PORTB = 	0xff;	
}
