Skip to content

Commit

Permalink
Add missing memDict argument to function call
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Ryd committed Oct 16, 2023
1 parent ac35644 commit 68bd9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator_hdl.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ def writeTBMemoryWrites(memDict, memInfoDict, notfinal_procs):
if memInfo.isFIFO:
string_final += string_tmp
else:
string_final += writeTBMemoryWriteRAMInstance(mtypeB, proc, memInfo.bxbitwidth, memInfo.is_binned)
string_final += writeTBMemoryWriteRAMInstance(mtypeB, memDict, proc, memInfo.bxbitwidth, memInfo.is_binned)
elif not memInfo.is_initial: # intermediate memories
if memInfo.isFIFO:
string_intermediate += string_tmp
Expand Down

0 comments on commit 68bd9f8

Please sign in to comment.