aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange
diff options
context:
space:
mode:
authorAlessandro Comodi <acomodi@antmicro.com>2021-09-08 15:15:15 +0200
committerAlessandro Comodi <acomodi@antmicro.com>2021-09-08 15:15:58 +0200
commit258b46125fb181c9e4a86c58f587ca79b709f124 (patch)
tree22296245a56dc2b980c475262c1d432774ee9e41 /fpga_interchange
parent675a96fc5aba0ffc8ee54d924e22710dea57d5c1 (diff)
downloadnextpnr-258b46125fb181c9e4a86c58f587ca79b709f124.tar.gz
nextpnr-258b46125fb181c9e4a86c58f587ca79b709f124.tar.bz2
nextpnr-258b46125fb181c9e4a86c58f587ca79b709f124.zip
interchange: xdc: add more not_implemented commands
Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
Diffstat (limited to 'fpga_interchange')
-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);
}