mirror of https://github.com/VLSIDA/OpenRAM.git
Added conditional sections to template
This commit is contained in:
parent
c1e891b2fb
commit
a87b40e1cb
|
|
@ -1,2 +0,0 @@
|
|||
ERROR: file magic.py: line 358: sram LVS mismatch (results in /tmp/openram_bugra_12868_temp/sram.lvs.report)
|
||||
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
ERROR: file design.py: line 47: Custom cell pin names do not match spice file:
|
||||
['D', 'Q', 'CLK', 'VDD', 'GND'] vs []
|
||||
|
||||
|
|
@ -25,7 +25,6 @@ class loopSection(baseSection):
|
|||
"""
|
||||
|
||||
def __init__(self, var, key):
|
||||
self.children = []
|
||||
self.var = var
|
||||
self.key = key
|
||||
|
||||
|
|
|
|||
|
|
@ -1,20 +0,0 @@
|
|||
from template import template
|
||||
|
||||
dict = {
|
||||
'module_name': 'sram_1kbyte_32b_2bank',
|
||||
'bank_module_name': 'sram_1kbyte_32b_2bank_1bank',
|
||||
'vdd': 'vdd',
|
||||
'gnd': 'gnd',
|
||||
'ports': [0, 1],
|
||||
'rw_ports': [0],
|
||||
'r_ports': [1],
|
||||
'w_ports': [],
|
||||
'banks': [0, 1],
|
||||
'data_width': 32,
|
||||
'addr_width': 8,
|
||||
'bank_sel': 1,
|
||||
'num_wmask': 4
|
||||
}
|
||||
t = template('../sram/sram_multibank_template.v', dict)
|
||||
t.write(dict['module_name'] + '.v')
|
||||
|
||||
Loading…
Reference in New Issue