> compile NEMU
ysyx_22040000 李心杨 Linux calcite 6.1.71 #1-NixOS SMP PREEMPT_DYNAMIC Fri Jan 5 14:18:41 UTC 2024 x86_64 GNU/Linux 23:32:05 up 2 days 12:26, 2 users, load average: 0.47, 0.36, 0.36
This commit is contained in:
parent
800cd64f98
commit
216d76ecef
1 changed files with 1 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
%%
|
%%
|
||||||
|
|
||||||
0[xX][0-9a-fA-F]+ { yylval = strtoul(yytext, NULL, 16); return HEX_NUMBER; }
|
0[xX][0-9a-fA-F]+ { yylval = strtoul(yytext, NULL, 16); return HEX_NUMBER; }
|
||||||
|
[0-9]+ { yylval = strtoul(yytext, NULL, 10); return NUMBER; }
|
||||||
$[a-zA-Z]{2,3} {
|
$[a-zA-Z]{2,3} {
|
||||||
yylval = isa_reg_str2val(yytext + 1, &success);
|
yylval = isa_reg_str2val(yytext + 1, &success);
|
||||||
if(!success) {
|
if(!success) {
|
||||||
|
@ -16,7 +17,6 @@ $[a-zA-Z]{2,3} {
|
||||||
return YYerror;
|
return YYerror;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
[0-9]+ { yylval = strtoul(yytext, NULL, 10); return NUMBER; }
|
|
||||||
[+\-*/()] { return *yytext; }
|
[+\-*/()] { return *yytext; }
|
||||||
[ \t] { }
|
[ \t] { }
|
||||||
. { printf("Unexpected character: %s\n", yytext); return YYerror; }
|
. { printf("Unexpected character: %s\n", yytext); return YYerror; }
|
||||||
|
|
Loading…
Reference in a new issue