mirror of https://github.com/VLSIDA/OpenRAM.git
Add check_pins function
This commit is contained in:
parent
1269bf6e16
commit
8e91ec1770
|
|
@ -26,6 +26,12 @@ class design(hierarchy_design):
|
|||
self.setup_layer_constants()
|
||||
self.setup_multiport_constants()
|
||||
|
||||
def check_pins(self):
|
||||
for pin_name in self.pins:
|
||||
pins = self.get_pins(pin_name)
|
||||
for pin in pins:
|
||||
print(pin_name, pin)
|
||||
|
||||
def setup_layer_constants(self):
|
||||
"""
|
||||
These are some layer constants used
|
||||
|
|
|
|||
Loading…
Reference in New Issue