Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
21607 Discussions

how to build 4 serial inverters

Altera_Forum
Honored Contributor II
1,225 Views

I want to build 4 serial inverters but at last when programming the FPGA quartus automatically fixes it as if no inverters exists.how can I do some thing to ignore this auto fixing?

0 Kudos
3 Replies
Altera_Forum
Honored Contributor II
501 Views

 

--- Quote Start ---  

I want to build 4 serial inverters but at last when programming the FPGA quartus automatically fixes it as if no inverters exists.how can I do some thing to ignore this auto fixing? 

--- Quote End ---  

 

 

altera has provided various attributes useful in controlling fitter. 

for comb. nodes(wires) try this attribute: 

 

signal invert : std_logic;  

 

attribute keep: boolean; 

attribute keep of invert: signal is true; 

 

apply to all relevant wires in your chain.
0 Kudos
Altera_Forum
Honored Contributor II
501 Views

Thank you for the code but I don't know how to apply it to my nodes in quartus.would you please help about that?

0 Kudos
Altera_Forum
Honored Contributor II
501 Views

 

--- Quote Start ---  

Thank you for the code but I don't know how to apply it to my nodes in quartus.would you please help about that? 

--- Quote End ---  

 

 

You don't apply attribute to quartus. You add it to your vhdl code. I have already done it for you. Juat change name of "invert" to your signal name(s). insert where you declared that signal
0 Kudos
Reply