GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
GENLIB_BUS.3(October 1, 1997) GENLIB_BUS.3(October 1, 1997)

GENLIB_BUS - Creates a bus name for netlist

#include <genlib.h>
char ∗GENLIB_BUS(busname, from, to);
char ∗busname;
long from, to;

See the file man1/alc_origin.1.

Common signal name for a bus
Starting index of the set of signal, from included
Ending index of the set of signal, to included

GENLIB_BUS Creates a set of names, based upon a common name, valid for the genlib netlist functions that manipulate the signal, and/or connector, concept. They are:

LOINS(3)
LOCON(3)
The from, to arguments give the boundaries of the bus to be created, both of them being included in the set. The function allows increasing or decreasing order busses, as one could expect.
This function has a constant equivalent, it means that if the from, to values are known at compilation time, one should better use, for readability purposes, the "[n:m]" construct.

#include <genlib.h>
main()
{
int b = 0;
int e = 12;
	/∗ Create a figure to work on  ∗/
	GENLIB_DEF_LOFIG("mycell");
	/∗ define interface  ∗/
	GENLIB_LOCON(GENLIB_BUS("i", b, e), INPUT, GENLIB_BUS("sig", b, e);
	GENLIB_LOCON("o[2:0]", OUTPUT, "sigout[4:6]");
	/∗ Place an instance ∗/
	GENLIB_LOINS("model","instance", GENLIB_BUS("sig", e/2), "sigout[6]", EOL);
	/∗ Save all that on disk ∗/
	GENLIB_SAVE_LOFIG();
}

genlib(1), GENLIB_ELM(3).

See the file man1/alc_bug_report.1.

ASIM/LIP6 PROCEDURAL GENERATION LANGUAGE

Search for    or go to Top of page |  Section O |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.