> 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:35:06  up 2 days 12:29,  2 users,  load average: 0.46, 0.38, 0.37
This commit is contained in:
tracer-ysyx 2024-01-15 23:35:06 +08:00 committed by xinyangli
parent 1ab8e91cc2
commit 5c6c03272c

View file

@ -11,9 +11,9 @@
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} {
puts(yytext);
// yylval = isa_reg_str2val(yytext + 1, &success);
yylval = isa_reg_str2val(yytext + 1, &success);
printf("yylval = %d\n", yylval);
if(!success) {
yyerror(NULL, "Failed to convert reg to value");
return YYerror;