Skip to content

Commit 857a11f

Browse files
authored
Added FT_bx_out_vld signal needed to indicate BX for KF (#63)
1 parent ca9427c commit 857a11f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

WriteVHDLSyntax.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,10 @@ def writeProcBXPort(modName,isInput,isInitial,first_of_type,delay):
15021502
if first_of_type and not ("VMSMER" in modName or "PC" in modName):
15031503
bx_str += " bx_o_V => "+modName.split("_")[0]+"_bx_out,\n"
15041504
#bx_str += " bx_o_V_ap_vld => "+modName+"_bx_out_vld,\n"
1505-
bx_str += " bx_o_V_ap_vld => open,\n"
1505+
if "FT_" in modName:
1506+
bx_str += " bx_o_V_ap_vld => "+modName.split("_")[0]+"_bx_out_vld,\n"
1507+
else:
1508+
bx_str += " bx_o_V_ap_vld => open,\n"
15061509
return bx_str
15071510

15081511
def writeProcMemoryLHSPorts(argname,mem,split = False):

0 commit comments

Comments
 (0)