> compile NEMU

ysyx_22040000 李心杨
Linux calcite 6.1.75 #1-NixOS SMP PREEMPT_DYNAMIC Thu Jan 25 23:27:52 UTC 2024 x86_64 GNU/Linux
 22:45:03  up   4:46,  2 users,  load average: 0.32, 0.20, 0.15
This commit is contained in:
tracer-ysyx 2024-02-05 22:45:03 +08:00 committed by xinyangli
parent a223953c52
commit b9aa7724a0

View file

@ -44,7 +44,7 @@ expression
| '-' number { $$ = -$2; }
| '*' expression {
printf("deref: %u\n", $2);
// $$ = vaddr_read($2, WORD_BYTES);
$$ = vaddr_read($2, WORD_BYTES);
}
| '(' expression ')' { $$ = $2; }