mirror of https://github.com/VLSIDA/OpenRAM.git
Fix placement of delay chain to align with control logic rows.
This commit is contained in:
parent
b3948121df
commit
120c4de5ad
|
|
@ -393,7 +393,7 @@ class control_logic(design.design):
|
||||||
debug.check(row % 2 == 0, "Must place delay chain at even row for supply alignment.")
|
debug.check(row % 2 == 0, "Must place delay chain at even row for supply alignment.")
|
||||||
|
|
||||||
# It is flipped on X axis
|
# It is flipped on X axis
|
||||||
y_off = (row + self.delay_chain.rows) * self.and2.height
|
y_off = row * self.and2.height + self.delay_chain.height
|
||||||
|
|
||||||
# Add the RBL above the rows
|
# Add the RBL above the rows
|
||||||
# Add to the right of the control rows and routing channel
|
# Add to the right of the control rows and routing channel
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue