
 sttl Macro Definitions
 pag

*
* This file contains all macro definitions
* used in the system.
*

F equ $40 FIRQ Interrupt Mask
I equ $10 IRQ Interrupt Mask

*
* Set interrupt flags (I and F)
*

seti macro
 orcc #F|I
 endm


*
* Clear interrupt flags (I and F)
*

clri macro
 andcc #!(F|I)
 endm
