mirror of https://github.com/VLSIDA/OpenRAM.git
18 lines
414 B
Python
18 lines
414 B
Python
|
|
from flask_table import *
|
||
|
|
|
||
|
|
class operating_conditions(Table):
|
||
|
|
parameter = Col('Parameter')
|
||
|
|
min = Col('Min')
|
||
|
|
typ = Col('Typ')
|
||
|
|
max = Col('Max')
|
||
|
|
units = Col('Units')
|
||
|
|
|
||
|
|
class operating_conditions_item(object):
|
||
|
|
def __init__(self, parameter, min, typ, max, units):
|
||
|
|
self.parameter = parameter
|
||
|
|
self.min = min
|
||
|
|
self.typ = typ
|
||
|
|
self.max = max
|
||
|
|
self.units = units
|
||
|
|
|