ysyx-workbench/nemu/src/monitor/sdb/addrexp.l

14 lines
321 B
Text
Raw Normal View History

%{
#include <addrexp.h>
%}
%option noyywrap
%%
0[xX][0-9a-fA-F]+ { yylval = strtol(yytext, NULL, 16); return HEX_NUMBER; }
[0-9]+ { yylval = atoi(yytext); return NUMBER; }
[+\-*/()] { return *yytext; }
[ \t] { }
. { printf("Unexpected character: %s\n", yytext); }
%%