Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

shared library in verilog/systemc simulators

Status
Not open for further replies.

rama_bing

Newbie level 6
Joined
May 27, 2009
Messages
14
Helped
1
Reputation
2
Reaction score
0
Trophy points
1,281
Activity points
1,366
We use shared(.so) files instead of compiling .cpp files everytime.
Similarly, can we use .so files for some verilog modules which we do not change frequently?
Thnks
 

To some extent you can, depending on which simulator you are using. A big problem for large designs is that simulators want to perform global optimizations on all modules in a simulation to minimize the overhead of a signal crossing a module port boundary. For example, the simulator would like to collapse all the always @(posedge clk) blocks in all the modules into a single process instead of having to schedule hundreds of separate process.

Our simulator lets you compile modules into libraries, as well as optimize large chunks of your design into optimized units to save you the time of optimizing it over and over.
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top