From b8ae21a52bbe070e53c6aab324b574b4d4f07ab9 Mon Sep 17 00:00:00 2001 From: Michael Timothy Grimes Date: Mon, 20 Aug 2018 22:11:24 -0700 Subject: [PATCH] made multi-port changes to sram. This commit will allow all levels of openram to pass unit tests --- compiler/sram_1bank.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/sram_1bank.py b/compiler/sram_1bank.py index d36c4be1..477e4a2a 100644 --- a/compiler/sram_1bank.py +++ b/compiler/sram_1bank.py @@ -76,7 +76,7 @@ class sram_1bank(sram_base): for i in range(self.word_size): dout_name = "dout0[{}]".format(i) - self.copy_layout_pin(self.bank_inst, dout_name, dout_name.upper()) + self.copy_layout_pin(self.bank_inst, dout_name, "DOUT[{}]".format(i)) # Lower address bits for i in range(self.col_addr_size):