mirror of https://github.com/VLSIDA/OpenRAM.git
fixed DRC datasheet error
This commit is contained in:
parent
1249dcc34d
commit
b4f1d53a1b
|
|
@ -62,7 +62,7 @@ class datasheet():
|
|||
self.html += '<p style="font-size: 26px;font-family: Trebuchet MS, Arial, Helvetica, sans-serif;">Timing Data</p>'
|
||||
model = ''
|
||||
if self.ANALYTICAL_MODEL:
|
||||
model = "analytical model: results may not be percise"
|
||||
model = "analytical model: results may not be precise"
|
||||
else:
|
||||
model = "spice characterizer"
|
||||
# display timing data
|
||||
|
|
|
|||
|
|
@ -105,16 +105,16 @@ def parse_characterizer_csv(f, pages):
|
|||
|
||||
DATETIME = row[col]
|
||||
col += 1
|
||||
|
||||
ANALYTICAL_MODEL = row[col]
|
||||
col += 1
|
||||
|
||||
DRC = row[col]
|
||||
col += 1
|
||||
|
||||
LVS = row[col]
|
||||
col += 1
|
||||
|
||||
ANALYTICAL_MODEL = row[col]
|
||||
col += 1
|
||||
|
||||
|
||||
AREA = row[col]
|
||||
col += 1
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue