Sponsored Content
Full Discussion: can I use this coding
Top Forums UNIX for Advanced & Expert Users can I use this coding Post 48094 by Optimus_P on Thursday 26th of February 2004 12:15:54 PM
Old 02-26-2004
why not try it befor you ask if it works?
 

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Coding on my Mac

I would like to start coding on my mac, but I'm getting an error when I attempt to execute my script -bash : testscript: command not found I have verified that the #! line points to the correct directory. If you have some insight it would be greatly appreciated! - D (1 Reply)
Discussion started by: DKNUCKLES
1 Replies

2. UNIX for Dummies Questions & Answers

pro*c coding

Hi All, I am new to pro*C. I have a select statement as select a.ename,a.sal,a.empno from emp where &n=(select count(distinct(b.sal)) from emp b where a.sal<=b.sal for this query I have to write a pro*C program. So can you please send me the complete code. Then I will foloow the same... (1 Reply)
Discussion started by: user71408
1 Replies

3. AIX

need help for coding this logic

contact me on <email address deleted> or <email address deleted> (1 Reply)
Discussion started by: suprithhr
1 Replies

4. Shell Programming and Scripting

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (1 Reply)
Discussion started by: crazydude80
1 Replies

5. Windows & DOS: Issues & Discussions

Need help with coding

HI, Can some one guide me how to make changes to the script below so that it can load the history of a program to IT server ? Format of data: YYYYMMDD065959.dsk.log YYYYMMDD235959.dsk.log currently both are loaded together. Need to separate them as above format. Thanks in advance. ... (2 Replies)
Discussion started by: crazydude80
2 Replies

6. Shell Programming and Scripting

HTTP coding

My company has an in house instant messaging system (like WhatsApp) where users can communicate with each other. I currently have code to email me certain items from my Sparc machine running SunOS 5.10. I want what I am emailing myself to now instant message me. The team that created the messenger... (5 Replies)
Discussion started by: shorty
5 Replies
GENLIB_LOCON.3(October 1, 1997) 										   GENLIB_LOCON.3(October 1, 1997)

NAME
GENLIB_LOCON - adds a logical connector to the current netlist figure SYNOPSYS
#include <genlib.h> void GENLIB_LOCON(connector, direction, signal); char *connector, *signal; char direction; ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr PARAMETERS
connector Name of the connector to be created in the current figure direction Indicates the connector behaviour regarding signals propagation signal Name of the signal on which the connector is linked DESCRIPTION
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: IN as input. OUT as output. INOUT as input/output, like supplies or clock for example. UNKNOWN if one doesn't know what it is. TRISTATE as high impedance output. TRANSV as transciever. That means TRISTATE input plus output. ERROR
"GENLIB_LOCON impossible : missing GENLIB_DEF_LOFIG" No figure has been yet specified by a call to DEF_LOFIG. So it isn't possible to add anything. you must call DEF_LOFIG before any other netlist call. "GENLIB_LOCON : Bad signal or connector bus name" A signal or connector, described under a bus form, has an illegal syntax. "GENLIB_LOCON : All LOCON should be defined befor any GENLIB_LOINS" A connector is added after instances. This is a methodological error. Only move your LOCON before the first LOINS in your code. "GENLIB_LOCON : different number of signals and connectors" A bussed form of signal and connector has been used, but the width of the busses are not equal. This is an obvious error, check it. "Illegal addlocon. Connector connector already exist in figure figname" A connector name must be unique in a given figure at a given hierachy level. DIAGNOSTICS
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 connec- tors 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. EXAMPLE
#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(); } SEE ALSO
genlib(1), GENLIB_BUS(3), GENLIB_ELM(3), GENLIB_LOSIG(3), GENLIB_LOINS(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. PROCEDURAL GENERATION LANGUAGE
ASIM/LIP6 GENLIB_LOCON.3(October 1, 1997)
All times are GMT -4. The time now is 08:36 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy