How to setup ADE on CIW by using SKILL code

R

roland

Guest
Dear All :

I want to setup the path of the verilog.vmx by using SKILL code on CIW .
And I want it change in an existing , open ADE session .

Here is my code , but it can't work .

---------------------------------------------------
session1 = asiGetCurrentSession()
kk = list("/fs5/EDA/LDV/cur/tools/bin/verilog.vmx")
asiEnvOptionVal(session1 "vermixBinary" kk)
---------------------------------------------------

Please help me , Thank you

Roland


rolandchiu@airoha.com
 
Roland,

I did more digging, but whilst I found a way of doing this, it required me to
use a private SKILL function, so I don't want to advertise that (since it
is private and hence liable to change).

There's a public API for getting the executable name:

asiGetDigitalSimExecName(session)

but not one for setting it. It's a SimOption - not an EnvOption,
but it's in a different partition, so there's no direct public way of doing
this.

You'll need to go via your support channels and ask for a public API
to set the simulator executable in an open session - perhaps adding
a function:

asiSetDigitalSimExecName(session)

would be a clean way to do this.

Regards,

Andrew.

On 19 Feb 2004 17:40:14 -0800, rolandchiu@airoha.com (roland) wrote:

Dear All :

I want to setup the path of the verilog.vmx by using SKILL code on CIW .
And I want it change in an existing , open ADE session .

Here is my code , but it can't work .

---------------------------------------------------
session1 = asiGetCurrentSession()
kk = list("/fs5/EDA/LDV/cur/tools/bin/verilog.vmx")
asiEnvOptionVal(session1 "vermixBinary" kk)
---------------------------------------------------

Please help me , Thank you

Roland


rolandchiu@airoha.com
--
Andrew Beckett
Senior Technical Leader
Custom IC Solutions
Cadence Design Systems Ltd
 

Welcome to EDABoard.com

Sponsor

Back
Top