Modify the delay calculation for non-conforming timing model in .subckt CD4572UB.

This commit is contained in:
Brian Taylor 2022-11-29 15:39:02 -08:00 committed by Holger Vogt
parent ec0807bafd
commit a317639d23
1 changed files with 3 additions and 3 deletions

View File

@ -2412,7 +2412,7 @@ static struct timing_data *create_min_typ_max(char *prefix, char *rem)
tdp->estimate = EST_UNK; tdp->estimate = EST_UNK;
strcpy(mntymxstr, prefix); strcpy(mntymxstr, prefix);
strcat(mntymxstr, "mn="); strcat(mntymxstr, "mn");
extract_model_param(rem, mntymxstr, buf); extract_model_param(rem, mntymxstr, buf);
tdp->min = NULL; tdp->min = NULL;
if (bufsave[0]) { if (bufsave[0]) {
@ -2422,7 +2422,7 @@ static struct timing_data *create_min_typ_max(char *prefix, char *rem)
buf = bufsave; buf = bufsave;
strcpy(mntymxstr, prefix); strcpy(mntymxstr, prefix);
strcat(mntymxstr, "ty="); strcat(mntymxstr, "ty");
extract_model_param(rem, mntymxstr, buf); extract_model_param(rem, mntymxstr, buf);
tdp->typ = NULL; tdp->typ = NULL;
if (bufsave[0]) { if (bufsave[0]) {
@ -2432,7 +2432,7 @@ static struct timing_data *create_min_typ_max(char *prefix, char *rem)
buf = bufsave; buf = bufsave;
strcpy(mntymxstr, prefix); strcpy(mntymxstr, prefix);
strcat(mntymxstr, "mx="); strcat(mntymxstr, "mx");
extract_model_param(rem, mntymxstr, buf); extract_model_param(rem, mntymxstr, buf);
tdp->max = NULL; tdp->max = NULL;
if (bufsave[0]) { if (bufsave[0]) {