This is from the latest file in the repository.
In the main() function
sei(); // Enable interrupts
while (1) { // do this forever
cSREG = SREG; /* store SREG value */
cli(); // disable interrupts
I was just wondering where the interrupts get turned on again. Obviously they are else it would not work, I just can't find it