Verilog doubt regarding Z^-1 implementation

Status
Not open for further replies.

anishsingh

Junior Member level 2
Joined
Feb 27, 2012
Messages
20
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,421
How do we implement a delay block in dsp systems (represented by z^-1 ) while verilog coding for semi custom asic design ??
 

It's just a block of registers, possibly with a clock enable if th esampling rate is only a fraction of the system clock

Code:
always @(posedge clock)
begin
  if (sample_clk)
    x2 <= X1;
end
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…