Off by one error in channel spacing

This commit is contained in:
mrg 2020-06-29 16:47:34 -07:00
parent 459e3789b8
commit 372a8a728e
1 changed files with 1 additions and 1 deletions

View File

@ -900,7 +900,7 @@ class bank(design.design):
self.copy_layout_pin(self.column_decoder_inst[port], decoder_name, addr_name)
if port % 2:
offset = self.column_decoder_inst[port].ll() - vector(self.num_col_addr_lines * pitch, 0)
offset = self.column_decoder_inst[port].ll() - vector((self.num_col_addr_lines + 1) * pitch, 0)
else:
offset = self.column_decoder_inst[port].lr() + vector(pitch, 0)