%top {

#include "grammar.h"

}


%option noyywrap
%option nounput
%option noinput
%option yylineno
%option stack
%option noyy_top_state

%x bsize


%%


" "                     { }

[A-Za-z_][A-Za-z0-9_]*  { yylvalp->string = strdup(yytext); return NAME; }

"("                     { yy_push_state(bsize); }
<bsize>[0-9]+           { yylvalp->integer = atoi(yytext); return SIZE; }
<bsize>")"              { yy_pop_state(); }

[01]                    { yylvalp->integer = atoi(yytext); return BIT; }


%%