
Originally Posted by
Ioannis
I get an "Temp variables exceeding T4" error in MPASM assembler.
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,
Bookmarks