I would like to place some interrupt functions within separate code modules for reuse across applications. Is this possible? For example, the file "system_tick.c" could contain: static void timer0_isr(void) interrupt 1 using 1 { //...whatever... } ...and other related functions. Thanks.