//******************************************
// PICLOADER code for Hi-Tech's PIC C
//******************************************
#asm
	psect	powerup, class=CODE, delta=2
	global	powerup, start
powerup:
	org 0x3
	goto start
#endasm

//******************************************
// main() function, your code goes here
//******************************************
void main()
{

}