made -v a valid option for simx simulator

This commit is contained in:
MichaelJSr 2024-11-28 02:12:01 -08:00
parent 973fcd7845
commit 6c2cbdfec2

View file

@ -41,7 +41,7 @@ const char* program = nullptr;
static void parse_args(int argc, char **argv) {
int c;
while ((c = getopt(argc, argv, "t:w:c:rsh")) != -1) {
while ((c = getopt(argc, argv, "t:w:c:vsh")) != -1) {
switch (c) {
case 't':
num_threads = atoi(optarg);