Code:
ASM
INT_LIST  macro    ; IntSource,        Label,  Type, ResetFlag?
        INT_Handler    INT_INT,  _QEI,   PBP,  yes
    endm
    INT_CREATE               ; Creates the interrupt processor

 ENDASM
_QEI label ; PBP and yes not correctly allined. Change as per the following

Code:
ASM
INT_LIST  macro    ; IntSource,        Label,  Type, ResetFlag?
        INT_Handler    INT_INT,         _QEI,   PBP,  yes
    endm
    INT_CREATE               ; Creates the interrupt processor

 ENDASM
Al.