
sfr IPH = 0xB7;/*8052 Special Register*/
void main(void)
{

	/*Initialisations go here*/
        /*Fixing high priority to Serial Interrupt*/
        IP = 0x10;
        IPH = 0x10;
        EA = 1;/*Enable interrupts*/
	while(1)
	{
		/*Superloop code*/
	}
}

