L166 myfile.obj INTNO (TIMER0(20h))
This example defines trap number 20h for the interrupt service routine using interrupt name TIMER0. This interrupt is defined in C as follows:
void timer0_isr (void) interrupt TIMER0 { ...
L166 myfile.obj INTNO(DEFAULT_ISR(FILL))
This example specifies that DEFAULT_ISR should be used as the interrupt code all unused traps.
L166 myfile.obj INTNO(SERIAL_ISR(NONE))
This example specifies that no interrupt vector should be generated for SERIAL_ISR. |