- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
how to write a 20ns delay on verilog HDL?
simple example pls thanksLink Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Synthesizable:
always @ (posedge clk)
data_delayed <= data;
(clk is 50 MHz) Non-synthesizable: `timescale 1ns / 1ps
<module declaration stuff>
always @*
data_delayed =# 20 data;

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