aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako')
-rw-r--r--host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako12
1 files changed, 0 insertions, 12 deletions
diff --git a/host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako b/host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako
deleted file mode 100644
index df055645c..000000000
--- a/host/utils/rfnoc/templates/modules/connect_clk_domains.v.mako
+++ /dev/null
@@ -1,12 +0,0 @@
-<%page args="connections, clocks"/>\
-\
-%for connection in connections:
-<%
- src_name = connection["srcblk"] # Should always be "_device_"
- src = clocks[(src_name, connection["srcport"])]
- dst_name = connection["dstblk"]
- dst = clocks[(dst_name, connection["dstport"])]
-%>\
- assign ${dst_name}_${dst["name"]}_clk = ${src["name"]}_clk;
-%endfor
-