mirror of https://github.com/VLSIDA/OpenRAM.git
Remove stdc layer
This commit is contained in:
parent
157926960b
commit
148521c458
|
|
@ -695,8 +695,8 @@ class layout():
|
|||
# we should add a boundary just for DRC in some technologies
|
||||
if not self.is_library_cell and not self.bounding_box:
|
||||
# If there is a boundary layer, and we didn't create one, add one.
|
||||
if "stdc" in techlayer.keys():
|
||||
boundary_layer = "stdc"
|
||||
if "boundary" in techlayer.keys():
|
||||
boundary_layer = "boundary"
|
||||
boundary = [self.find_lowest_coords(),
|
||||
self.find_highest_coords()]
|
||||
debug.check(boundary[0] and boundary[1], "No shapes to make a boundary.")
|
||||
|
|
@ -1259,10 +1259,7 @@ class layout():
|
|||
if OPTS.netlist_only:
|
||||
return
|
||||
|
||||
if "stdc" in techlayer.keys():
|
||||
boundary_layer = "stdc"
|
||||
else:
|
||||
boundary_layer = "boundary"
|
||||
boundary_layer = "boundary"
|
||||
if not ur:
|
||||
self.bounding_box = self.add_rect(layer=boundary_layer,
|
||||
offset=ll,
|
||||
|
|
|
|||
Loading…
Reference in New Issue