aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/pdc.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2020-10-20 09:49:40 +0100
committerDavid Shah <dave@ds0.me>2020-11-30 08:45:27 +0000
commit1e4eb5ec391a26b1da8e3e7609ffc92768df1976 (patch)
tree4dbaf330e6a0e9db02765fc635c0632de0180cc2 /nexus/pdc.cc
parentcbf99d5e5390d8439722e0172067b687be5ac060 (diff)
downloadnextpnr-1e4eb5ec391a26b1da8e3e7609ffc92768df1976.tar.gz
nextpnr-1e4eb5ec391a26b1da8e3e7609ffc92768df1976.tar.bz2
nextpnr-1e4eb5ec391a26b1da8e3e7609ffc92768df1976.zip
nexus: Ignore some PDC commands
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'nexus/pdc.cc')
-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());
}