GENLIB_LOTRS.3(October 1, 1997) | GENLIB_LOTRS.3(October 1, 1997) |
GENLIB_LOTRS - adds a logical transistor to the current netlist figure
#include <genlib.h> void GENLIB_LOTRS(type,width,length,grid,source,drain) char type; long width, length; char ∗grid, ∗source, ∗drain;
See the file buster/alliance/alc_origin.1.en.gz.
LOTRS add a logical transistor to the current working figure. This transistor has each of its pin logicaly linked to the adequat signal given as parameter. The type attribut may take the following values:
"GENLIB_LOTRS impossible : missing GENLIB_DEF_LOFIG"
#include <genlib.h> main() { /∗ Create a figure to work on, an inverter ∗/ GENLIB_DEF_LOFIG("n1"); /∗ define interface ∗/ GENLIB_LOCON("i", IN, "input"); GENLIB_LOCON("f", OUT, "output"); GENLIB_LOCON("vdd", IN, "vdd"); GENLIB_LOCON("vss", IN, "vss"); /∗ Place transistors ∗/ GENLIB_LOTRS(TRANSP, 5, 4, "input", "vdd", "output"); GENLIB_LOTRS(TRANSN, 2, 4, "input", "vss", "output"); /∗ Save all that on disk ∗/ GENLIB_SAVE_LOFIG(); }
genlib(1), GENLIB_BUS(3), GENLIB_ELM(3), GENLIB_LOINS(3), GENLIB_LOCON(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
ASIM/LIP6 | PROCEDURAL GENERATION LANGUAGE |