mirror of https://github.com/VLSIDA/OpenRAM.git
Fix wrong supply voltage in config files.
This commit is contained in:
parent
240c416100
commit
3364f47e56
|
|
@ -10,6 +10,7 @@ word_size = 1
|
|||
num_words = 16
|
||||
|
||||
tech_name = OPTS.tech_name
|
||||
|
||||
process_corners = ["TT"]
|
||||
supply_voltages = [5.0]
|
||||
temperatures = [25]
|
||||
|
|
@ -18,6 +19,7 @@ route_supplies = True
|
|||
check_lvsdrc = True
|
||||
|
||||
if tech_name == "freepdk45":
|
||||
supply_voltages = [1.0]
|
||||
drc_name = "calibre"
|
||||
lvs_name = "calibre"
|
||||
pex_name = "calibre"
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ inline_lvsdrc = True
|
|||
analytical_delay = False
|
||||
|
||||
if tech_name == "freepdk45":
|
||||
supply_voltages = [1.0]
|
||||
drc_name = "calibre"
|
||||
lvs_name = "calibre"
|
||||
pex_name = "calibre"
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ supply_voltages = [5.0]
|
|||
temperatures = [25]
|
||||
|
||||
if tech_name == "freepdk45":
|
||||
supply_voltages = [1.0]
|
||||
drc_name = "calibre"
|
||||
lvs_name = "calibre"
|
||||
pex_name = "calibre"
|
||||
|
|
|
|||
Loading…
Reference in New Issue