Commit c49aaf7d authored by Jayke Meijer's avatar Jayke Meijer

Removed useless yyvals.

parent bd11337f
......@@ -9,8 +9,8 @@
\$[a-z0-9._] { yylval = yytext; return ARG; } /* Arg of instr */
^[a-z.]+ { yylval = yytext; return INSTR; } /* Instruction */
\.[^\n]* { yylval = yytext; return DIRECTIVE; } /* Assembly */
\, { yylval = yytext; return COMMA; } /* Comma */
\, { return COMMA; } /* Comma */
#[^\n]* { yylval = yytext; return COMMENT; } /* Comment */
\n { yylval = yytext; return NL; } /* New line */
\n { return NL; } /* New line */
[\s\t]+ { ; } /* Ignore whitespace */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment