mirror of https://github.com/VLSIDA/OpenRAM.git
18 lines
267 B
Python
18 lines
267 B
Python
|
|
|
||
|
|
class drc_value():
|
||
|
|
"""
|
||
|
|
A single DRC value.
|
||
|
|
"""
|
||
|
|
def __init__(self, value):
|
||
|
|
self.value = value
|
||
|
|
|
||
|
|
def __call__(self, *args):
|
||
|
|
"""
|
||
|
|
Return the value.
|
||
|
|
"""
|
||
|
|
return self.value
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|