Moved column mux ff's to be horizontal with wmask flip flops and adjusted wmask AND array en pin location starting point.

This commit is contained in:
jsowash
2019-08-29 11:07:42 -07:00
parent 5099ff6f6c
commit f13c8eae8d
2 changed files with 14 additions and 13 deletions
+2 -2
View File
@@ -110,8 +110,8 @@ class write_mask_and_array(design.design):
end_en_pin = self.and2_insts[self.num_wmasks-1].get_pin("B")
self.add_layout_pin(text="en",
layer="metal3",
offset=beg_en_pin.ll(),
width = end_en_pin.rx() - beg_en_pin.lx())
offset=beg_en_pin.bc(),
width = end_en_pin.cx() - beg_en_pin.cx())
for i in range(self.num_wmasks):
self.copy_layout_pin(self.and2_insts[i],"A","wmask_in_{0}".format(i))