28 lines
919 B
C++
28 lines
919 B
C++
#include "config.hpp"
|
|
|
|
void Config::cli_parse(int argc, char **argv) {
|
|
CLI::App app;
|
|
app.add_option("-m,--memory", memory_file, "Content of memory")
|
|
->required()
|
|
->check(CLI::ExistingFile);
|
|
app.add_flag("!--no-bin", memory_file_binary,
|
|
"Memory file is in text format");
|
|
app.add_option("--wav", wavefile, "output .vcd file path");
|
|
app.add_flag("-i", interactive, "Launch sdb for interactive session");
|
|
app.add_option("--diff-lib", lib_ref,
|
|
"Dynamic library file of difftest reference")
|
|
->check(CLI::ExistingFile);
|
|
app.add_flag("--mtrace", do_mtrace, "Enable memory tracing");
|
|
app.add_option(
|
|
"--mtrace-range", mtrace_ranges,
|
|
"Specify memory tracing range (default: 0x80000000-0x8fffffff)")
|
|
->delimiter(',');
|
|
|
|
try {
|
|
app.parse(argc, argv);
|
|
} catch (const CLI::ParseError &e) {
|
|
exit((app).exit(e));
|
|
}
|
|
}
|
|
|
|
Config config;
|