From 258b46125fb181c9e4a86c58f587ca79b709f124 Mon Sep 17 00:00:00 2001 From: Alessandro Comodi Date: Wed, 8 Sep 2021 15:15:15 +0200 Subject: interchange: xdc: add more not_implemented commands Signed-off-by: Alessandro Comodi --- fpga_interchange/xdc.cc | 2 ++ 1 file changed, 2 insertions(+) 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); } -- cgit v1.2.3