GENLIB_LOCON.3(October 1, 1997) | GENLIB_LOCON.3(October 1, 1997) |
GENLIB_LOCON - adds a logical connector to the current netlist figure
#include <genlib.h> void GENLIB_LOCON(connector, direction, signal); char ∗connector, ∗signal; char direction;
See the file buster/alliance/alc_origin.1.en.gz.
LOCON add a logical connector to the interface of the actual working figure. This connector is logicaly linked to the signal signal. The direction attribut may take the following values:
"GENLIB_LOCON impossible : missing GENLIB_DEF_LOFIG"
Due to the vti file format, the direction of connectors is
lost if one uses it as starting point of a netlist desciption. All the
connectors have then the UNKNOWN direction.
Alliance and edif file format know only about IN, OUT, and
UNKNOWN. Only vhdl format fully supports the whole thing.
#include <genlib.h> main() { /∗ Create a figure to work on ∗/ GENLIB_DEF_LOFIG("mycell"); /∗ define interface ∗/ GENLIB_LOCON("i", INPUT, "sig1"); GENLIB_LOCON("o", OUTPUT, "sig2"); /∗ Place an instance ∗/ GENLIB_LOINS("model","instance", "sig1", "sig2", EOL); /∗ Save all that on disk ∗/ GENLIB_SAVE_LOFIG(); }
genlib(1), GENLIB_BUS(3), GENLIB_ELM(3), GENLIB_LOSIG(3), GENLIB_LOINS(3).
See the file buster/alliance/alc_bug_report.1.en.gz.
ASIM/LIP6 | PROCEDURAL GENERATION LANGUAGE |