aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nexus/pdc.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/nexus/pdc.cc b/nexus/pdc.cc
index 2622bfe1..189977e9 100644
--- a/nexus/pdc.cc
+++ b/nexus/pdc.cc
@@ -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());
}