diff --git a/src/asm/lexer.c b/src/asm/lexer.c index 3a7425ab..2cd35007 100644 --- a/src/asm/lexer.c +++ b/src/asm/lexer.c @@ -1307,6 +1307,7 @@ static uint32_t readGfxConstant(void) static bool startsIdentifier(int c) { + // Anonymous labels internally start with '!' return (c <= 'Z' && c >= 'A') || (c <= 'z' && c >= 'a') || c == '.' || c == '_'; }