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
parent 043e93e75e
commit ef710eae7a
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,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