mirror of https://github.com/VLSIDA/OpenRAM.git
Use sky130 bitcell in simulation for BLs
This commit is contained in:
parent
a874872936
commit
d119a0e7ff
|
|
@ -576,6 +576,10 @@ class simulation():
|
|||
"""
|
||||
Gets the signal name associated with the bitlines in the bank.
|
||||
"""
|
||||
# FIXME: change to a solution that does not depend on the technology
|
||||
if OPTS.tech_name == 'sky130':
|
||||
cell_mod = factory.create(module_type=OPTS.bitcell, version="opt1")
|
||||
else:
|
||||
cell_mod = factory.create(module_type=OPTS.bitcell)
|
||||
cell_bl = cell_mod.get_bl_name(port)
|
||||
cell_br = cell_mod.get_br_name(port)
|
||||
|
|
@ -604,5 +608,3 @@ class simulation():
|
|||
for i in range(1, len(delays)):
|
||||
delay+=delays[i]
|
||||
return delay
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue