mirror of https://github.com/VLSIDA/OpenRAM.git
RBL width is max of delay chain or bitcell load.
This commit is contained in:
parent
98fb1173df
commit
0c203c1c7e
|
|
@ -70,7 +70,8 @@ class replica_bitline(design.design):
|
|||
self.rbl_offset = self.bitcell_offset
|
||||
|
||||
|
||||
self.height = self.rbl_offset.y + self.rbl.height + self.m2_pitch
|
||||
self.height = max(self.rbl_offset.y + self.rbl.height + self.m2_pitch,
|
||||
self.delay_chain_offset.y + self.delay_chain.width + self.m2_pitch)
|
||||
self.width = self.rbl_offset.x + self.bitcell.width
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue