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

📄 ftedefs.h

📁 支持数字元件仿真的SPICE插件
💻 H
字号:
/* RCS Info: $Revision: 1.1 $ on $Date: 91/04/02 11:25:47 $ *         $Source: //pepper/atesse_spice/spice3/include/RCS/FTEdefs.h,v $ * Copyright (c) 1985 Wayne A. Christopher, U. C. Berkeley CAD Group * * General front end stuff. */#ifndef FTEdefs_h#define FTEdefs_h#define DEF_WIDTH   80	/* Line printer width. */#define DEF_HEIGHT  60  /* Line printer height. */#define IPOINTMIN   20  /* When we start plotting incremental plots. */#include "FTEparse.h"#include "FTEinp.h"/* The curcuits that are currently available to the user. */struct circ {    char *ci_name;    /* What the circuit can be called. */    char *ci_ckt;      /* The CKTcircuit structure. */    char *ci_symtab;    /* The INP symbol table. */    struct line *ci_deck;   /* The input deck. */    struct line *ci_origdeck;/* The input deck, before subckt expansion. */    struct line *ci_options;/* The .option cards from the deck... */    struct variable *ci_vars; /* ... and the parsed versions. */    bool ci_inprogress; /* We are in a break now. */    bool ci_runonce;    /* So com_run can to a reset if necessary... */    wordlist *ci_commands;  /* Things to do when this circuit is done. */    struct circ *ci_next;   /* The next in the list. */    char *ci_nodes;     /* ccom structs for the nodes... */    char *ci_devices;   /* and devices in the circuit. */    char *ci_filename;  /* Where this circuit came from. */    char *ci_defTask;   /* the default task for this circuit */    char *ci_specTask;  /* the special task for command line jobs */    char *ci_curTask;   /* the most recent task for this circuit */    char *ci_defOpt;    /* the default options anal. for this circuit */    char *ci_specOpt;   /* the special options anal. for command line jobs */    char *ci_curOpt;    /* the most recent options anal. for the circuit */} ;struct subcirc {    char *sc_name;  /* Whatever... */} ;#define mylog10(xx) (((xx) > 0.0) ? log10(xx) : (- log10(HUGE)))#ifndef CMS#include "FTEextern.h"#else  /* CMS */#include "FTEexter.h"#endif /* CMS */#endif /* FTEdefs_h */

⌨️ 快捷键说明

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