Altera_Forum
Honored Contributor
14 years agoPorting Xilinx Code...
I have a few questions porting some Xilinx code over to Altera. I found the Altera for Xilinx users guide, but I still have some remaining questions.
Is there Altera attributes simliar to the following Xilinx code? attribute iob : string; attribute iob of d : label is "true"; --data regsiters d : for i in 0 to 35 generate reg : fdce port map ( q => lut_data_i(i), c => clk_dac, ce => '1', clr => reset, d => lut_data(i)); end generate; and.... attribute keep : string; attribute keep of lut_data : signal is "true"; Thanks!