Action
Disable specified interrupt.
Syntax
DISABLE interrupt
Remarks
Interrupt : INT0, INT1, SERIAL, TIMER0, TIMER1 or TIMER2.
For other chips : INT2, INT3, INT4, INT5, INT6, INT7 , INT8, CAN
By default all interrupts
are disabled.
To disable all interrupts specify INTERRUPTS.
To enable the enabling and disabling of individual interrupts use ENABLE
INTERRUPTS.
Depending on the chip used,
there can be more interrupts.
Look at microprocessor support
for more details.
See also
ENABLE
Example
ENABLE INTERRUPTS
'enable the setting of interrupts
ENABLE TIMER0 'enable
TIMER0
DISABLE SERIAL 'disables
the serial interrupt.
DISABLE INTERRUPTS 'disable
all interrupts
|