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.

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.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top