mirror of https://github.com/VLSIDA/OpenRAM.git
Add correct boundary to SRAM
This commit is contained in:
parent
443c401561
commit
8e8a97cc4b
|
|
@ -124,6 +124,8 @@ class sram_base(design, verilog, lef):
|
||||||
highest_coord = self.find_highest_coords()
|
highest_coord = self.find_highest_coords()
|
||||||
self.width = highest_coord[0]
|
self.width = highest_coord[0]
|
||||||
self.height = highest_coord[1]
|
self.height = highest_coord[1]
|
||||||
|
self.add_boundary(ll=vector(0, 0),
|
||||||
|
ur=vector(self.width, self.height))
|
||||||
|
|
||||||
start_time = datetime.datetime.now()
|
start_time = datetime.datetime.now()
|
||||||
# We only enable final verification if we have routed the design
|
# We only enable final verification if we have routed the design
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue