Is there a technique for altering interrupt vectors that is faster than setting flags and testing them at the vector target? Assuming a flag register with one bit set elsewhere:
ISR: sbrc,flags,0 rjmp target_0 sbrc,flags,1 rjmp target_1 . . . etc.
Above seems rather slow.
Thanks in advance