From 68bd9f8ec4749c8d127e9139a97d1ab5f4f6705b Mon Sep 17 00:00:00 2001 From: Anders Ryd Date: Mon, 16 Oct 2023 03:51:22 -0400 Subject: [PATCH] Add missing memDict argument to function call --- generator_hdl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator_hdl.py b/generator_hdl.py index 35c82c4..32a6c55 100755 --- a/generator_hdl.py +++ b/generator_hdl.py @@ -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