> 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 18:09:15 up 11:25, 1 user, load average: 0.34, 0.32, 0.21
This commit is contained in:
@ -21,6 +21,11 @@ void engine_start();
|
||||
int is_exit_status_bad();
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
#ifdef _TEST_EXPR_
|
||||
init_monitor(0, NULL);
|
||||
int test_expr(int argc, char *argv[]);
|
||||
return test_expr(argc, argv);
|
||||
#endif
|
||||
/* Initialize the monitor. */
|
||||
#ifdef CONFIG_TARGET_AM
|
||||
am_init_monitor();
|
||||
@ -28,10 +33,6 @@ int main(int argc, char *argv[]) {
|
||||
init_monitor(argc, argv);
|
||||
#endif
|
||||
|
||||
#ifdef _TEST_EXPR_
|
||||
int test_expr(int argc, char *argv[]);
|
||||
return test_expr(argc, argv);
|
||||
#endif
|
||||
/* Start engine. */
|
||||
engine_start();
|
||||
|
||||
|
Reference in New Issue
Block a user