fix styling

This commit is contained in:
Jesse Cirimelli-Low 2020-02-06 12:15:52 +00:00
parent 3a06141030
commit b107934672
2 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ temperatures = [25]
route_supplies = True
check_lvsdrc = True
netlist_only = True
output_path = "temp"
output_name = "sram_{0}_{1}_{2}".format(word_size,

View File

@ -38,6 +38,7 @@ class sram_config:
# Copy all the variables to the local module
for member in members:
setattr(module,member,getattr(self,member))
def compute_simple_sram_sizes(self):
self.row_addr_size = int(log(OPTS.num_words, 2))
self.col_addr_size = int(log(OPTS.word_size, 2))