mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-09-03 16:31:08 +02:00
Single bank passing.
Parameterized gate column mux of dff height. End-cap only supply option instead of no vdd in bitcell.
This commit is contained in:
@@ -78,12 +78,10 @@ class hierarchical_decoder(design.design):
|
||||
|
||||
def add_decoders(self):
|
||||
""" Create the decoders based on the number of pre-decodes """
|
||||
self.pre2_4 = factory.create(module_type="hierarchical_predecode2x4",
|
||||
height=self.cell_height)
|
||||
self.pre2_4 = factory.create(module_type="hierarchical_predecode2x4")
|
||||
self.add_mod(self.pre2_4)
|
||||
|
||||
self.pre3_8 = factory.create(module_type="hierarchical_predecode3x8",
|
||||
height=self.cell_height)
|
||||
self.pre3_8 = factory.create(module_type="hierarchical_predecode3x8")
|
||||
self.add_mod(self.pre3_8)
|
||||
|
||||
def determine_predecodes(self, num_inputs):
|
||||
|
||||
Reference in New Issue
Block a user