rm depreciated storage class
This commit is contained in:
parent
da6d2dd781
commit
b00fa921ac
|
|
@ -28,7 +28,7 @@ extern int BJTtemp(GENmodel*,CKTcircuit*);
|
|||
extern int BJTtrunc(GENmodel*,CKTcircuit*,double*);
|
||||
extern int BJTdisto(int,GENmodel*,CKTcircuit*);
|
||||
extern int BJTnoise(int,int,GENmodel*,CKTcircuit*,Ndata*,double*);
|
||||
extern int BJTdSetup(GENmodel*, register CKTcircuit*);
|
||||
extern int BJTdSetup(GENmodel*, CKTcircuit*);
|
||||
extern int BJTsoaCheck(CKTcircuit *, GENmodel *);
|
||||
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ static void copy_coeffs(double **dst, IFvalue *value)
|
|||
int
|
||||
CPLmParam(int param, IFvalue *value, GENmodel *inModel)
|
||||
{
|
||||
register CPLmodel *model = (CPLmodel *)inModel;
|
||||
CPLmodel *model = (CPLmodel *)inModel;
|
||||
switch(param) {
|
||||
case CPL_R:
|
||||
copy_coeffs(& model->Rm, value);
|
||||
|
|
|
|||
|
|
@ -670,7 +670,7 @@ expC(double ar, double ai, double h, double *cr, double *ci)
|
|||
static int
|
||||
multC(double ar, double ai, double br, double bi, double *cr, double *ci)
|
||||
{
|
||||
register double tp;
|
||||
double tp;
|
||||
|
||||
tp = ar*br - ai*bi;
|
||||
*ci = ar*bi + ai*br;
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ Author: 1992 Charles Hough
|
|||
int
|
||||
TXLmParam(int param, IFvalue *value, GENmodel *inModel)
|
||||
{
|
||||
register TXLmodel *model = (TXLmodel *)inModel;
|
||||
TXLmodel *model = (TXLmodel *)inModel;
|
||||
switch(param) {
|
||||
case TXL_R:
|
||||
model->R = value->rValue;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ VDMOSacLoad(GENmodel *inModel, CKTcircuit *ckt)
|
|||
double GmT;
|
||||
double xcsT, xcTt;
|
||||
|
||||
register int selfheat;
|
||||
int selfheat;
|
||||
|
||||
for( ; model != NULL; model = VDMOSnextModel(model)) {
|
||||
for(here = VDMOSinstances(model); here!= NULL;
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@ VDMOSload(GENmodel *inModel, CKTcircuit *ckt)
|
|||
int Check_th, Check_dio;
|
||||
int error;
|
||||
|
||||
register int selfheat;
|
||||
int selfheat;
|
||||
double rd0T, rd1T, dBeta_dT, dIds_dT;
|
||||
double Vrd=0.0, dIth_dVrd=0.0, dIrd_dT=0.0;
|
||||
double drd0T_dT, drd1T_dT, drd_dT, dgdrain_dT=0.0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue