diff --git a/compiler/sram_factory.py b/compiler/sram_factory.py index 4bc6ecc2..fae33f38 100644 --- a/compiler/sram_factory.py +++ b/compiler/sram_factory.py @@ -106,6 +106,8 @@ class sram_factory: # Dynamically load the module if real_module_type == "contact": c = importlib.import_module("openram.base.contact") + elif real_module_type == "sram": + c = importlib.import_module("openram.sram") else: c = importlib.import_module("openram.modules."+real_module_type) except ModuleNotFoundError: