aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-09-08 15:56:41 +0100
committerGitHub <noreply@github.com>2021-09-08 15:56:41 +0100
commit95845b47b5c2229456d12cd5732e90d9dd00697e (patch)
tree22296245a56dc2b980c475262c1d432774ee9e41
parent675a96fc5aba0ffc8ee54d924e22710dea57d5c1 (diff)
parent258b46125fb181c9e4a86c58f587ca79b709f124 (diff)
downloadnextpnr-95845b47b5c2229456d12cd5732e90d9dd00697e.tar.gz
nextpnr-95845b47b5c2229456d12cd5732e90d9dd00697e.tar.bz2
nextpnr-95845b47b5c2229456d12cd5732e90d9dd00697e.zip
Merge pull request #808 from acomodi/fix-xdc
interchange: xdc: add more not_implemented commands
-rw-r--r--fpga_interchange/xdc.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/fpga_interchange/xdc.cc b/fpga_interchange/xdc.cc
index 6dee9d0b..53a80b7d 100644
--- a/fpga_interchange/xdc.cc
+++ b/fpga_interchange/xdc.cc
@@ -216,9 +216,11 @@ TclInterp::TclInterp(Context *ctx)
// Not implemented TCL commands
Tcl_CreateObjCommand(interp, "create_clock", not_implemented, ctx, nullptr);
+ Tcl_CreateObjCommand(interp, "get_clocks", not_implemented, ctx, nullptr);
Tcl_CreateObjCommand(interp, "get_iobanks", not_implemented, ctx, nullptr);
Tcl_CreateObjCommand(interp, "get_nets", not_implemented, ctx, nullptr);
Tcl_CreateObjCommand(interp, "get_pins", not_implemented, ctx, nullptr);
+ Tcl_CreateObjCommand(interp, "set_clock_groups", not_implemented, ctx, nullptr);
Tcl_CreateObjCommand(interp, "set_false_path", not_implemented, ctx, nullptr);
Tcl_CreateObjCommand(interp, "set_max_delay", not_implemented, ctx, nullptr);
}