void move_interrupts(void) { uchar temp; /* GET MCUCR */ temp = MCUCR; /* Enable change of Interrupt Vectors */ MCUCR = temp | (1 << IVCE); /* Move interrupts to Boot Flash section */ MCUCR = temp | (1 << IVSEL); }