12.07.2015, 12:14
13)
- Code
Code:goto abc; //No error #emit LOAD.pri a #emit LOAD.alt b #emit JSLESS abc //Error, undefined symbol abc abc: your code
- Problem
The compiler allows you to use goto with lables that are defined later (somewhere down the file after your goto statement). But unfortunately the compiler does not recognize labels that are defined later when you use #emit. - Solution:
No idea!