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.

How should I implent a Delay CELL in xilinx FPGA spatan6/

Status
Not open for further replies.

wkong_zhu

Full Member level 3
Full Member level 3
Joined
Nov 13, 2004
Messages
174
Helped
4
Reputation
8
Reaction score
0
Trophy points
1,296
Visit site
Activity points
1,293
I want use delay chain to deglitch input signal. for example.
--------------------------------------
module ( input I, output O)
wire [9:0] delay_net; /* synthesis syn_keep = 1*/

BUF delaybuffer[9:0] ( .I({delay_net[8:0], I}), .O(delay_net[9:0]) );

assign O = delay_net[9];
endmodule
----------------------------------

But after synplify_pro synthesis, The BUFs disappeared totoally. only assign statements left.
How should I keep combinational Delays after Synthesis and APR.

Anybody help me.

- - - Updated - - -

I use LUT4 to act like a delay cell, It also failed.
the 'syn_keep' can only keep net name, it can not keep LUT.
 

for synplify, you can use the syn_blackbox attribute. you may also need KEEP or S in the UCF file as well if MAP is set to do post-synthesis logic optimizations. You may also want to use FPGA editor to get LOC/DIRT constraints for the UCF. These are used to force MAP/PAR to use the exact same placement and routing.
 

Thanks, I will try syn_blackbox and KEEP.

After APR, xilinx generated verilog netlist with no hierarchy, It is not easy for me to find the delay cell.
How to generated hierarchical verilog netlist after APR??
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top