Dear all,
In many modelling code of cadence /*include"discipline.h"*/ is a very common command. What is this "discipline.h" & how can I get this file? Can anyone please give me any link or ideal to get this "discipline.h" file???
I need this for /* Berkeley BSIM3v3.2.0 & BSIM3v3.2.4 (default) Verilog-A model */.
Thank you all.
Re: What does discipline.h means & how can I get it?
You should be able to access the header by first making sure that the file is in the same folder as your workspace project and by "importing" it with "#". For example:
Code Verilog - [expand]
1
#include "discipline.h"
include (no pun intended) the double quotations as well.
That file is a part of the Cadence distribution.
The file is located in the directory: your_install_dir/tools/dfII/samples/artist/spectreHDL/include
,where your_install_dir is the path to the Cadence installation directory.