Test VAR BIT SYSTEM

Will create a var in this case called PB01
and then define test as bit 0 in that var
#define Test PB01, 000h


@ bsf Test

translates to

@ BSF PB01 , 0 ;set test to a logic 1



bit vars and declaring them to be system located in no way makes their use asm interrupt safe if used with pbp statements in said isr
its the pbp statements not the vars where the issue lies