mirror of https://github.com/VLSIDA/OpenRAM.git
Update port data test for sky130 single port
This commit is contained in:
parent
00ca2d45b6
commit
9e3a28237f
|
|
@ -22,9 +22,18 @@ class port_data_wmask_test(openram_test):
|
||||||
globals.init_openram(config_file)
|
globals.init_openram(config_file)
|
||||||
from sram_config import sram_config
|
from sram_config import sram_config
|
||||||
|
|
||||||
|
if OPTS.tech_name == "sky130":
|
||||||
|
num_spare_rows = 1
|
||||||
|
num_spare_cols = 1
|
||||||
|
else:
|
||||||
|
num_spare_rows = 0
|
||||||
|
num_spare_cols = 0
|
||||||
|
|
||||||
c = sram_config(word_size=16,
|
c = sram_config(word_size=16,
|
||||||
write_size=4,
|
write_size=4,
|
||||||
num_words=16)
|
num_words=16,
|
||||||
|
num_spare_cols=num_spare_cols,
|
||||||
|
num_spare_rows=num_spare_rows)
|
||||||
|
|
||||||
c.words_per_row = 1
|
c.words_per_row = 1
|
||||||
factory.reset()
|
factory.reset()
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue