Quote Originally Posted by mister_e View Post
Enable/Disable are for PBP ON INTERRUPT GOTO

For DT-INTS you have
@ INT_ENABLE IntSource
and
@ INT_DISABLE IntSource

You could disable all interrupt by clearing INTCON GIE too. Used with care this could work.
AHA! Thanks Steve!

When using @ INT_DISABLE to protect a subroutine, does it also protect nested gosubs, or do I need to disable interrupts in each nested subroutine to protect them all from interrupt?

Thanks!