diff --git a/src/asm/lexer.c b/src/asm/lexer.c index 1fd5d2b0..14d693ce 100644 --- a/src/asm/lexer.c +++ b/src/asm/lexer.c @@ -909,6 +909,8 @@ static void readLineContinuation(void) || lexerState->expansions->distance) lexerState->lineNo++; return; + } else if (c == ';') { + discardComment(); } else { error("Begun line continuation, but encountered character '%s'\n", print(c));