mirror of https://github.com/VLSIDA/OpenRAM.git
fix styling
This commit is contained in:
parent
3a06141030
commit
b107934672
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in New Issue