#include #include #include #include #include struct Config { std::filesystem::path images_path = "./"; std::filesystem::path memory_file; std::vector refs; std::vector refs_prefix; std::filesystem::path dut; std::string dut_prefix = ""; std::string gdbstub_addr = "/tmp/gdbstub-diffu.sock"; bool use_debugger = false; int cli_parse(int argc, char **argv); }; extern Config config;