nexus: Ignore some PDC commands

Signed-off-by: David Shah <dave@ds0.me>
This commit is contained in:
David Shah 2020-10-20 09:49:40 +01:00
parent cbf99d5e53
commit 1e4eb5ec39

View File

@ -203,6 +203,10 @@ struct PDCParser
return cmd_ldc_set_location(arguments);
else if (cmd == "ldc_set_port")
return cmd_ldc_set_port(arguments);
else if (cmd == "ldc_set_sysconfig" || cmd == "get_nets" || cmd == "create_clock") {
log_warning("%s is not yet supported!\n", cmd.c_str());
return TCLValue("");
}
else
log_error("Unsupported PDC command '%s'\n", cmd.c_str());
}