// Timer stuff // Coded by Scott Evans 31/5/97 // Last modified 31/5/97 #ifndef _TIMER_H #define _TIMER_H #include // Declare a variable used for timing _byte TIMER=0; // Increment timer, never gets back to 0 #define _IncTIMER TIMER=(!++TIMER ? 1 : TIMER) #endif