mirror of https://github.com/VLSIDA/OpenRAM.git
made multi-port changes to sram. This commit will allow all levels of openram to pass unit tests
This commit is contained in:
parent
f0cca8293c
commit
b8ae21a52b
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in New Issue