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