reorder sram __init__() argument order for tests that rely on the order

This commit is contained in:
samuelkcrow 2022-03-04 13:53:20 -08:00 committed by Bugra Onal
parent 34ee709c69
commit ebe4393d66
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class sram():
results.
We can later add visualizer and other high-level functions as needed.
"""
def __init__(self, name, sram_config):
def __init__(self, sram_config, name):
self.name = name
self.config = sram_config