On 5/31/06, Petter Urkedal <[EMAIL PROTECTED]> wrote:
On 2006-06-01, josephhenryblack wrote:
> if you have any tips about using the tools, subversion etc. for any
> others who are considering contributing, please add them to the wiki /
> post them/or even email me and we can add them.

I only used iverilog for the moment.  I think it would be a good thing
to have a wiki page for people who wants to learn (more) about HDL
programming.  We may start by adding some links, like
http://www.asic-world.com/verilog/veritut.html.  I also found
http://en.wikibooks.org/wiki/Programmable_Logic which is a skeleton of a
book.  Maybe we could contribute general things there (and in
wikipedia), and leave the OGP wiki for our specific stuff and links?

Can you suggest a place on the wiki where I can link to a page "HDL
Development" (or choose another title)?

We should definitely include some examples of how to do basic things
with icarus.

For instance, how to compile a design for simulation:

iverilog <verilog files>

How to run the simulation:

./a.out

How to view the results:

gtkwave test.vcd

And of course, what code you need to include in your test harness so
that you get something useful out of the simulation:

initial begin
   $dumpfile( "test.vcd" );
   $dumpvars;

   #5000;  // How long you want to run the simulation
   $finish;
end
_______________________________________________
Open-graphics mailing list
[email protected]
http://lists.duskglow.com/mailman/listinfo/open-graphics
List service provided by Duskglow Consulting, LLC (www.duskglow.com)

Reply via email to