FlexGui P2ASM Local Labels
in Propeller 2
I'm using FlexGui with the __pasm directive to implement P2ASM.
__pasm {
...
}
Does FlexC allow local labels? I can't get it to work using either colon or dot notation. 
Comments
#include <propeller2.h> __pasm { entry nop .somelocal dirnot #56 waitx ##20_000_000 jmp #.somelocal bar } int main () { _cognew(&entry, 0); for(;;) ; return(0); }Now local labels don't work. I get the following messages.
Code follows:
Code follows: