Added sense amp enable delay calculation.

This commit is contained in:
Hunter Nichols
2018-11-08 23:54:18 -08:00
parent b8061d3a4e
commit 8957c556db
21 changed files with 276 additions and 26 deletions
+6
View File
@@ -102,3 +102,9 @@ class precharge_array(design.design):
for i in range(self.columns):
offset = vector(self.pc_cell.width * i, 0)
self.local_insts[i].place(offset)
def get_en_cin(self):
"""Get the relative capacitance of all the clk connections in the precharge array"""
#Assume single port
precharge_en_cin = self.pc_cell.get_en_cin()
return precharge_en_cin*self.columns