From 513c7e9f71a46b97bcf112591235d6978edd21dc Mon Sep 17 00:00:00 2001 From: Jesse Cirimelli-Low Date: Mon, 10 Jul 2023 13:12:13 -0700 Subject: [PATCH 1/2] update sram library commit --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f5e14bed..e10caba0 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ SRAM_LIB_GIT_REPO ?= https://github.com/vlsida/sky130_fd_bd_sram.git # Use this for development #SRAM_LIB_GIT_REPO ?= git@github.com:VLSIDA/sky130_fd_bd_sram.git #SRAM_LIB_GIT_REPO ?= https://github.com/google/skywater-pdk-libs-sky130_fd_bd_sram.git -SRAM_LIB_GIT_COMMIT ?= a83b6468c48434d927b90058b22047843c58027b +SRAM_LIB_GIT_COMMIT ?= 060f3638be6269dd9aa82cfbbdfd9525943c1582 # Open PDKs OPEN_PDKS_DIR ?= $(PDK_ROOT)/open_pdks From 4e649aad6bc633e917001880235ed075ecaf1f7e Mon Sep 17 00:00:00 2001 From: Sam Crow Date: Mon, 10 Jul 2023 13:20:20 -0700 Subject: [PATCH 2/2] fix typo bug in spice comments code --- compiler/base/hierarchy_spice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/base/hierarchy_spice.py b/compiler/base/hierarchy_spice.py index da92c0fb..64dc0b2b 100644 --- a/compiler/base/hierarchy_spice.py +++ b/compiler/base/hierarchy_spice.py @@ -68,7 +68,7 @@ class spice(): self.trim_insts = set() # Keep track of any comments to add the the spice try: - self.commments + self.comments except AttributeError: self.comments = [] @@ -82,7 +82,7 @@ class spice(): """ Add a comment to the spice file """ try: - self.commments + self.comments except AttributeError: self.comments = []