diff options
-rw-r--r-- | host/utils/rfnoc_blocktool/templates/Makefile | 2 | ||||
-rw-r--r-- | host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/host/utils/rfnoc_blocktool/templates/Makefile b/host/utils/rfnoc_blocktool/templates/Makefile index d56bcd9fb..55b02790e 100644 --- a/host/utils/rfnoc_blocktool/templates/Makefile +++ b/host/utils/rfnoc_blocktool/templates/Makefile @@ -19,7 +19,7 @@ include $(BASE_DIR)/../tools/make/viv_sim_preamble.mak #------------------------------------------------- # Design Specific #------------------------------------------------- -# Include makefiles and sources for the DUT and its +# Include makefiles and sources for the DUT and its # dependencies. include $(BASE_DIR)/../lib/rfnoc/core/Makefile.srcs include $(BASE_DIR)/../lib/rfnoc/utils/Makefile.srcs diff --git a/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako b/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako index 3c623f08c..3181be10f 100644 --- a/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako +++ b/host/utils/rfnoc_blocktool/templates/noc_shell_template.v.mako @@ -9,7 +9,7 @@ import math // // Module: noc_shell_${config['module_name']} // -// Description: +// Description: // // This is a tool-generated NoC-shell for the ${config['module_name']} block. // See the RFNoC specification for more information about NoC shells. @@ -199,12 +199,12 @@ module noc_shell_${config['module_name']} #( %elif config['data']['fpga_iface'] == "axis_chdr": assign axis_chdr_clk = ${config['data']['clk_domain']}_clk; assign axis_chdr_rst = ${config['data']['clk_domain']}_rst; - + <%include file="/modules/axis_chdr_modules_template.mako"/>\ %elif config['data']['fpga_iface'] == "axis_data": assign axis_data_clk = ${config['data']['clk_domain']}_clk; assign axis_data_rst = ${config['data']['clk_domain']}_rst; - + <%include file="/modules/axis_data_modules_template.mako"/>\ %endif endmodule // noc_shell_${config['module_name']} |