使用Modelsim如何产生debussy用的fsdb档
使用Modelsim如何產生debussy用的fsdb檔 如題, 盼先進告知!! 謝謝 lunkun 2006-8-25 09:42 AM 要先装了Debussy,然后在运行modelsim是加上lpi的选项就可以了 thjan65 2006-9-22 01:49 PM How to use FSDB under Modelsim
1. Edit X:modelsimmodelsim.ini
Veriuser = Full_path_of_novas.dll
Full_path_of_novas.dll may look like c:novasdebussyshareplimodelsim_pli54winntnovas.dll
If the above setting doesn’t work, you must set PLIOBJS.
2. Set the " PLIOBJS" system environment variable before running vsim.
PLIOBJS= C:NovasDebussysharePLImodelsim_pli54WINNTnovas.dll
3. In your testbench, add the following text:
initial
begin
$fsdbDumpfile("filename_you_want.fsdb");
$fsdbDumpvars;
end
|