#ifndef _NPC_CONFIG_H_ #define _NPC_CONFIG_H_ #include #include #include #include struct Config { std::filesystem::path wavefile; std::filesystem::path memory_file; uint64_t max_sim_time = 1000; bool memory_file_binary = {true}; bool do_trace{false}; void cli_parse(int argc, char **argv); }; extern Config config; #endif