| Author |
Message |
chico
Joined: 29 Dec 2004 Posts: 19
|
14 Aug 2006 7:19 Modelsim question |
|
|
|
|
| I have an IP compiled by vlog with -nodebug option, how to use these compiled files to do simulation in top level. Thanks!
|
|
| Back to top |
|
 |
aji_vlsi
Joined: 10 Sep 2004 Posts: 593 Helped: 69 Location: Bangalore, India
|
14 Aug 2006 16:21 Re: Modelsim question |
|
|
|
|
| chico wrote: |
| I have an IP compiled by vlog with -nodebug option, how to use these compiled files to do simulation in top level. Thanks! |
If you know the top level of the encrypted IP and its port list, simply instantiate it in your own code, then do
| Code: |
vlog my_top.v;
vsim my_top
|
I've not tried it, but might work.
HTH
Ajeetha, CVC
www.noveldv.com
* A Pragmatic Approach to VMM Adoption 2006 ISBN 0-9705394-9-5 h**p://www.systemverilog.us/
* SystemVerilog Assertions Handbook
* Using PSL/Sugar
|
|
| Back to top |
|
 |
chico
Joined: 29 Dec 2004 Posts: 19
|
15 Aug 2006 8:49 Modelsim question |
|
|
|
|
| Hi aji_vlsi, I have instantiate the encrypted IP and vlog vsim my_top, but it cant find the IP. How to include these encrypted files, it seems simply instantiate is not enough.
|
|
| Back to top |
|
 |
edacw1
Joined: 07 Mar 2004 Posts: 241 Helped: 4
|
17 Aug 2006 6:46 Modelsim question |
|
|
|
|
| You can use GUI and select all files.
|
|
| Back to top |
|
 |
sakthi_tallika
Joined: 03 Aug 2006 Posts: 14 Helped: 3
|
17 Aug 2006 11:33 Re: Modelsim question |
|
|
|
|
you can use the following options.
+libext+.v
-y <your ip directory path>
|
|
| Back to top |
|
 |
chandhramohan
Joined: 24 Mar 2005 Posts: 50 Helped: 6
|
17 Aug 2006 12:51 Re: Modelsim question |
|
|
|
|
Hi ,
The compiled design will be in different format like .db in synopsys .The default compiled database will be in work directory . Since you are given compiled database you need to mention the path of ur database like ,
vsim -work <path> <top_module> ( I'm not sure about the exact option ) .
Check in the user manual for the correct option .
Regards
Chandhramohan
|
|
| Back to top |
|
 |