- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I need to implement a boolean function using nand and nor gates , and the gates should have 20ns delays. How should I change the following verilog code? and how could I simulate the results? is it possible to manually adjust the gate delays? module nand ( a,b,c); input a,b; output c; nand(c,a,b); endmodule does# 20 nand(c,a,b) work?Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
First of all, that code is verilog, not VHDL.
Secondly, you'll need to register it to get a 20ns delay (with 50Mhz clock)
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page