void isr(void) interrupt n
{
   // Handle the Interrupt
}

void main(void)
{
  isr(); // Direct call to Interrupt Service Routine 
}