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
|
# we should add a boundary just for DRC in some technologies
|
||||||
if not self.is_library_cell and not self.bounding_box:
|
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 there is a boundary layer, and we didn't create one, add one.
|
||||||
if "stdc" in techlayer.keys():
|
if "boundary" in techlayer.keys():
|
||||||
boundary_layer = "stdc"
|
boundary_layer = "boundary"
|
||||||
boundary = [self.find_lowest_coords(),
|
boundary = [self.find_lowest_coords(),
|
||||||
self.find_highest_coords()]
|
self.find_highest_coords()]
|
||||||
debug.check(boundary[0] and boundary[1], "No shapes to make a boundary.")
|
debug.check(boundary[0] and boundary[1], "No shapes to make a boundary.")
|
||||||
|
|
@ -1259,9 +1259,6 @@ class layout():
|
||||||
if OPTS.netlist_only:
|
if OPTS.netlist_only:
|
||||||
return
|
return
|
||||||
|
|
||||||
if "stdc" in techlayer.keys():
|
|
||||||
boundary_layer = "stdc"
|
|
||||||
else:
|
|
||||||
boundary_layer = "boundary"
|
boundary_layer = "boundary"
|
||||||
if not ur:
|
if not ur:
|
||||||
self.bounding_box = self.add_rect(layer=boundary_layer,
|
self.bounding_box = self.add_rect(layer=boundary_layer,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue