⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gendefs.h

📁 支持数字元件仿真的SPICE插件
💻 H
字号:
/* * Copyright (c) 1985 Thomas L. Quarles */#ifndef GEN#define GEN "GENdefs.h $Revision: 1.1 $  on $Date: 91/04/02 11:26:00 $ "#include "IFsim.h"        /* definitions used to describe generic devices *//* information used to describe a single instance */typedef struct sGENinstance {    struct sGENmodel *GENmodPtr;    /* backpointer to model */    struct sGENinstance *GENnextInstance;   /* pointer to next instance of                                              * current model*/    IFuid GENname;  /* pointer to character string naming this instance */    int GENnode1;   /* appropriate node numbers */    int GENnode2;   /* appropriate node numbers */    int GENnode3;   /* appropriate node numbers */    int GENnode4;   /* appropriate node numbers */    int GENnode5;   /* appropriate node numbers */} GENinstance ;/* per model data */typedef struct sGENmodel {       /* model structure for a resistor */    int GENmodType; /* type index of this device type */    struct sGENmodel *GENnextModel; /* pointer to next possible model in                                      * linked list */    GENinstance * GENinstances; /* pointer to list of instances that have this                                 * model */    IFuid GENmodName;       /* pointer to character string naming this model */} GENmodel;#endif /*GEN*/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -