Browse Source

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

pre-master-46
Brian Taylor 3 years ago
committed by Holger Vogt
parent
commit
0924fbb7eb
  1. 6
      src/frontend/udevices.c

6
src/frontend/udevices.c

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

Loading…
Cancel
Save