From 099869d4c9292191858634105402a6481848794b Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Sun, 3 Sep 2023 18:35:07 -0700 Subject: [PATCH] Fix typos --- sram_char.py | 2 +- sram_func.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sram_char.py b/sram_char.py index 52a085cb..709a4de6 100755 --- a/sram_char.py +++ b/sram_char.py @@ -41,7 +41,7 @@ openram.init_openram(config_file=args[0], is_unit_test=False) openram.print_banner() -# Configure the SRAM organization (duplicated from openram.py) +# Configure the SRAM organization (duplicated from sram_compiler.py) from openram.characterizer import fake_sram s = fake_sram(name=OPTS.output_name, word_size=OPTS.word_size, diff --git a/sram_func.py b/sram_func.py index 5b7b1569..104232a4 100755 --- a/sram_func.py +++ b/sram_func.py @@ -47,7 +47,7 @@ openram.init_openram(config_file=config_file, is_unit_test=False) openram.print_banner() -# Configure the SRAM organization (duplicated from openram.py) +# Configure the SRAM organization (duplicated from sram_compiler.py) from openram.characterizer.fake_sram import fake_sram s = fake_sram(name=OPTS.output_name, word_size=OPTS.word_size,