> compile NEMU

221220000 张三
Linux zzy 5.15.146.1-microsoft-standard-WSL2 #1 SMP Thu Jan 11 04:09:03 UTC 2024 x86_64 x86_64 x86_64 GNU/Linux
 17:53:26 up 20:02,  2 users,  load average: 0.54, 0.29, 0.25
This commit is contained in:
tracer-ics2023
2024-08-18 17:53:26 +08:00
committed by zzy
parent 0922fc9132
commit 479836868c

View File

@ -227,9 +227,9 @@ int test_expr() {
bool success = false;
res = expr(buf, &success);
if (res == expect) {
printf("True :");
fprintf(stdout, "test_expr True :");
} else {
printf("Failed:");
fprintf(stdout, "test_expr Failed:");
}
printf("%"PRIuLEAST32" : %"PRIuLEAST32"\n", expect, res);
return 0;