Forum Discussion
Altera_Forum
Honored Contributor
13 years agoThere is no Xor gate in the fabric, so it has to synthesize it. If you want each XOR gate to be in a LUT, the put a "keep" attribute on each LUT signal. Open your VHDL/Verilog file in Quartus and go to Edit -> Insert Template -> VHDL/Verilog -> Synthesis Attributes -> Keep to get an example. For Verilog I know it's:
(* keep *) wire my_xor;