There are many ways to do Interrupts. But the easiest to use is ON INTERRUPT GOTO.

To activate a particular interrupt, you'll set the appropriate Enable bit for the interrupt you want to use.

Then in the interrupt handler you clear the Interrupt Flag before RESUME'ing which returns control to the Main program.

With more information, we could probably give more direction as to which Enable bits and flags to use.
<br>