Skip to content

Commit 518ee4e

Browse files
committed
add phycells lef, fix spelling
1 parent b12fca6 commit 518ee4e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

hammer/technology/sky130/__init__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,17 @@ def gen_config(self) -> None:
7575
elif slib == "sky130_scl":
7676
libs += [
7777
Library(
78-
lef_file=os.path.join(SKY130_SCL, "sky130_scl_9T_tech/lefn/sky130_scl_9T.tlef"),
78+
lef_file=os.path.join(SKY130_SCL, "sky130_scl_9T_tech/lef/sky130_scl_9T.tlef"),
7979
verilog_sim=os.path.join(SKY130_SCL, "sky130_scl_9T/verilog/sky130_scl_9T.v"),
8080
provides=[Provide(lib_type="technology")],
8181
),
8282
]
83+
libs += [
84+
Library(
85+
lef_file=os.path.join(SKY130_SCL, "sky130_scl_9T_tech/lef/sky130_scl_9T_phyCells.lef"),
86+
provides=[Provide(lib_type="technology")],
87+
),
88+
]
8389
else:
8490
raise ValueError(f"Incorrect standard cell library selection: {slib}")
8591
if self.use_sram22:

0 commit comments

Comments
 (0)