Quote Originally Posted by Darrel Taylor View Post
Hi Ioannis,

That error is comming from ReEnterPBP.bas

There's no way for it to know if the complex formula/IF statement is in the main program or the interrupt handler. And if it's in the handler, it will end up overwriting PBP's system vars.

If you know for sure that the offending statements are NOT in the handler. You can open the ReEnterPBP.bas file and comment the error line.
Code:
        ifdef T5
;            ERROR "Temp variables exceeding T4"
        endif
HTH,
Hi Darrel,
So if I understand this right, ERROR is a reserved word in assembler, and if IFDEF calls it then MPASM displays the error when compiling . . . YES?<br><br> Hi Steve, thanks , I will give that some thought.