Add CLI arguments for enabling trace.

This commit is contained in:
Lionel Debroux 2022-02-19 23:30:20 +01:00
parent f109a5814b
commit 7b6855f608

View File

@ -118,6 +118,8 @@ static void parse_option(const char *option, const char *params)
enable_halt = false; enable_halt = false;
} else if (strncmp(option, "smp", 4) == 0) { } else if (strncmp(option, "smp", 4) == 0) {
smp_enabled = true; smp_enabled = true;
} else if (strncmp(option, "trace", 6) == 0) {
enable_trace = true;
} }
} }