T
Trevor Bowen
Guest
Hello,
I am trying to set up CADENCE to interface with a third party simulator,
and I am having some early problems with ADE.
First, I register the tool like this:
asiRegisterTool('mySimTool) => t
Then I try to configure an simple option for it:
defmethod( asiInitEnvOption ( ( tool mySimTool ) )
;; Initialize the environment options from the base class.
callNextMethod()
asiAddEnvOption( tool
?name 'myControlFile
?prompt "Control File:"
?value "control.my"
?type 'string
)
)
which returns this error:
*Error* defmethod: unknown class - mySimTool
What am I missing? Although it's not a cookbook, I am trying to follow
this CADENCE doc:
doc/skartistref/chap2.html
If I am going about this the wrong way (trying to integrate a 3rd party
simulator into ADE), please let me know. Or, if you have any tips on
this task, I'd welcome them gladly!
thanks,
Trevor
I am trying to set up CADENCE to interface with a third party simulator,
and I am having some early problems with ADE.
First, I register the tool like this:
asiRegisterTool('mySimTool) => t
Then I try to configure an simple option for it:
defmethod( asiInitEnvOption ( ( tool mySimTool ) )
;; Initialize the environment options from the base class.
callNextMethod()
asiAddEnvOption( tool
?name 'myControlFile
?prompt "Control File:"
?value "control.my"
?type 'string
)
)
which returns this error:
*Error* defmethod: unknown class - mySimTool
What am I missing? Although it's not a cookbook, I am trying to follow
this CADENCE doc:
doc/skartistref/chap2.html
If I am going about this the wrong way (trying to integrate a 3rd party
simulator into ADE), please let me know. Or, if you have any tips on
this task, I'd welcome them gladly!
thanks,
Trevor