> 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 19:31:24 up 1 day 5:07, 2 users, load average: 1.99, 1.19, 0.92
This commit is contained in:
parent
05dce9ed14
commit
dbed45814b
2 changed files with 5 additions and 2 deletions
|
@ -48,6 +48,4 @@
|
|||
|
||||
#define TODO() panic("please implement me")
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -31,6 +31,11 @@ input
|
|||
|
||||
expression
|
||||
: number { $$ = $1; }
|
||||
| expression '=' '=' expression { $$ = ($1 == $3); }
|
||||
| expression '>' '=' expression { $$ = ($1 >= $3); }
|
||||
| expression '<' '=' expression { $$ = ($1 <= $3); }
|
||||
| expression '>' expression { $$ = ($1 > $3); }
|
||||
| expression '<' expression { $$ = ($1 < $3); }
|
||||
| expression '+' expression { $$ = $1 + $3; }
|
||||
| expression '-' expression { $$ = $1 - $3; }
|
||||
| expression '*' expression { $$ = $1 * $3; }
|
||||
|
|
Loading…
Reference in a new issue