updates dbt-rise components

This commit is contained in:
2023-10-15 10:02:31 +02:00
parent f0660235ed
commit 7503a4df2f
6 changed files with 11 additions and 9 deletions

View File

@ -28,7 +28,7 @@ CLIParser::CLIParser(int argc, char *argv[])
po::store(po::parse_command_line(argc, argv, desc), vm_); // can throw
// --help option
if (vm_.count("help")) {
std::cout << "DBT-RISE-RiscV simulator for RISC-V" << std::endl << desc << std::endl;
std::cout << "DBT-RISE-TGC based virtual platform of TGC cores" << std::endl << desc << std::endl;
}
po::notify(vm_); // throws on error, so do after help in case there are any problems
valid = true;