mirror of https://github.com/VLSIDA/OpenRAM.git
fixed some final typos in datasheet
This commit is contained in:
parent
70ac2e8aa4
commit
5302fd205f
|
|
@ -119,28 +119,28 @@ def parse_characterizer_csv(f,pages):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
for item in sheet.timing:
|
for item in sheet.timing:
|
||||||
if item.paramter == "CSb setup rising":
|
if item.parameter == "CSb setup rising":
|
||||||
if float(FF_SETUP_LH_MIN) < float(item.min):
|
if float(FF_SETUP_LH_MIN) < float(item.min):
|
||||||
item.min = FF_SETUP_LH_MIN
|
item.min = FF_SETUP_LH_MIN
|
||||||
elif float(FF_SETUP_LH_MAX) > float(item.max):
|
elif float(FF_SETUP_LH_MAX) > float(item.max):
|
||||||
item.max = FF_SETUP_LH_MAX
|
item.max = FF_SETUP_LH_MAX
|
||||||
|
|
||||||
if item.paramter == "CSb setup falling":
|
if item.parameter == "CSb setup falling":
|
||||||
if float(FF_SETUP_HL_MIN) < float(item.min):
|
if float(FF_SETUP_HL_MIN) < float(item.min):
|
||||||
item.min = FF_SETUP_HL_MIN
|
item.min = FF_SETUP_HL_MIN
|
||||||
elif float(FF_SETUP_HL_MAX) > float(item.nax):
|
elif float(FF_SETUP_HL_MAX) > float(item.max):
|
||||||
item.max = FF_SETUP_HL_MAX
|
item.max = FF_SETUP_HL_MAX
|
||||||
|
|
||||||
if item.paramter == "CSb hold rising":
|
if item.parameter == "CSb hold rising":
|
||||||
if float(FF_HOLD_HL_MIN) < float(item.min):
|
if float(FF_HOLD_HL_MIN) < float(item.min):
|
||||||
item.min = FF_SETUP_HL_MIN
|
item.min = FF_SETUP_HL_MIN
|
||||||
elif float(FF_HOLD_HL_MAX) > float(item.nax):
|
elif float(FF_HOLD_HL_MAX) > float(item.max):
|
||||||
item.max = FF_SETUP_HL_MAX
|
item.max = FF_SETUP_HL_MAX
|
||||||
|
|
||||||
if item.paramter == "CSb hold falling":
|
if item.parameter == "CSb hold falling":
|
||||||
if float(FF_HOLD_HL_MIN) < float(item.min):
|
if float(FF_HOLD_HL_MIN) < float(item.min):
|
||||||
item.min = FF_SETUP_HL_MIN
|
item.min = FF_SETUP_HL_MIN
|
||||||
elif float(FF_HOLD_HL_MAX) > float(item.nax):
|
elif float(FF_HOLD_HL_MAX) > float(item.max):
|
||||||
item.max = FF_SETUP_HL_MAX
|
item.max = FF_SETUP_HL_MAX
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue