You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

36 lines
810 B

/**********
Copyright 1992 Regents of the University of California. All rights
reserved.
Author: 1992 Charles Hough
**********/
#include "ngspice.h"
#include "const.h"
#include "txldefs.h"
#include "ifsim.h"
#include "cktdefs.h"
#include "sperror.h"
#include "suffix.h"
/*ARGSUSED*/
int
TXLask(CKTcircuit *ckt, GENinstance *inst, int which, IFvalue *value, IFvalue *select)
{
TXLinstance *fast = (TXLinstance *)inst;
switch(which) {
case TXL_OUT_NODE:
value->iValue = fast->TXLnegNode;
return(OK);
case TXL_IN_NODE:
value->iValue = fast->TXLposNode;
return(OK);
case TXL_LENGTH:
value->rValue = fast->TXLlength;
return(OK);
default:
return(E_BADPARM);
}
/* NOTREACHED */
}