Apparently "goto" works, but not labels - I can't do "MyLabel:" or "label MyLabel". Instead, I do
#asm
MyLabel:
#endasm
Not to worry. It will be added before the beta.
Paul
Are labels working yet? Ive tried to put "label labelname;" but i get a unknown type error at compile time.
Any ideas?
Lewis
MyLabel:
You can't have any tabs or spaces before the label though.
Thanks Parker. Hope that gets fixed because where i had my label, it was supposed to be indented in about 3 tabs, so its messed up my prety code now :-(
Lewis
Sometimes it makes sense to do it that way though, since normally you use labels for custom loops, it makes it easy to see the start of the loop