Align RBL inverter with first load inverter in delay chain to aid supply connections

This commit is contained in:
Matt Guthaus 2018-07-19 11:02:13 -07:00
parent 311ab97bfc
commit ea53066966
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ class replica_bitline(design.design):
self.delay_chain_offset = vector(-self.delay_chain.width-gap_width,self.replica_bitcell.height)
# Will be flipped vertically below the delay chain
self.rbl_inv_offset = self.delay_chain_offset + vector(0.5*self.delay_chain.width, 0)
# Align it with the inverters in the delay chain to simplify supply connections
self.rbl_inv_offset = self.delay_chain_offset + vector(2*self.inv.width, 0)
# Placed next to the replica bitcell
self.access_tx_offset = vector(-gap_width-self.access_tx.width-self.inv.width, 0.5*self.inv.height)