Cleanup and rename vias.

This commit is contained in:
mrg
2020-01-30 01:45:33 +00:00
parent 3147b99ce0
commit 79391b84da
22 changed files with 106 additions and 87 deletions
+4 -3
View File
@@ -8,7 +8,7 @@
import os
from design_rules import *
from module_type import *
from custom_cell_properties import CellProperties
from custom_cell_properties import cell_properties
"""
File containing the process technology parameters for FreePDK 45nm.
@@ -23,15 +23,16 @@ File containing the process technology parameters for FreePDK 45nm.
# Using tech_modules['cellname'] you can override each class by providing a custom
# implementation in '$OPENRAM_TECHDIR/modules/'
# For example: tech_modules['contact'] = 'contact_freepdk45'
tech_modules = ModuleType()
tech_modules = module_type()
###################################################
# Custom cell properties
###################################################
cell_properties = CellProperties()
cell_properties = cell_properties()
cell_properties.bitcell.mirror.x = True
cell_properties.bitcell.mirror.y = False
###################################################
# GDS file info
###################################################
+3 -3
View File
@@ -8,7 +8,7 @@
import os
from design_rules import *
from module_type import *
from custom_cell_properties import CellProperties
from custom_cell_properties import cell_properties
"""
File containing the process technology parameters for SCMOS 4m, 0.35um
@@ -23,12 +23,12 @@ File containing the process technology parameters for SCMOS 4m, 0.35um
# Using tech_modules['cellname'] you can override each class by providing a custom
# implementation in '$OPENRAM_TECHDIR/modules/'
# For example: tech_modules['contact'] = 'contact_scn4m'
tech_modules = ModuleType()
tech_modules = module_type()
###################################################
# Custom cell properties
###################################################
cell_properties = CellProperties()
cell_properties = cell_properties()
cell_properties.bitcell.mirror.x = True
cell_properties.bitcell.mirror.y = False