mirror of https://github.com/VLSIDA/OpenRAM.git
17 lines
372 B
Python
17 lines
372 B
Python
|
|
from flask_table import *
|
||
|
|
|
||
|
|
class timing_and_current_data(Table):
|
||
|
|
parameter = Col('Parameter')
|
||
|
|
min = Col('Min')
|
||
|
|
max = Col('Max')
|
||
|
|
units = Col('Units')
|
||
|
|
|
||
|
|
class timing_and_current_data_item(object):
|
||
|
|
def __init__(self, parameter, min, max, units):
|
||
|
|
self.parameter = parameter
|
||
|
|
self.min = min
|
||
|
|
self.max = max
|
||
|
|
self.units = units
|
||
|
|
|
||
|
|
|