Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
告知
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17268 ディスカッション

Quartus VHDL-2008 outdated IEEE package ?

Altera_Forum
名誉コントリビューター II
4,299件の閲覧回数

Hi, 

I'm using Quartus 16.1.2 and it seem to use outdated package for IEEE.std_logic_1164 and IEEE.numeric_std because I can't use the Unary Reduction Logic Operators provide by VHDL-2008. 

example: ack <= or(ack_vector); 

https://alteraforum.com/forum/attachment.php?attachmentid=15251&stc=1  

Does anyone know how fix this issue?  

 

Note: Work with Vivado and Questa Sim
0 件の賞賛
7 返答(返信)
Altera_Forum
名誉コントリビューター II
3,398件の閲覧回数

It's not outdated. Quartus only supports a few features of vhdl 2008. 

 

Quartus pro has full vhdl 2008 support
Altera_Forum
名誉コントリビューター II
3,398件の閲覧回数

Crap 

Cyclone V 5CGXFC5 doesn't seem to be supported in PRO :(
Altera_Forum
名誉コントリビューター II
3,398件の閲覧回数

Afaik, Pro only supports 10 series and onwards, and comes at extra cost.

Altera_Forum
名誉コントリビューター II
3,398件の閲覧回数

The work around is to use the synopsys std_logic_misc library and use the or_reduce function: 

 

use ieee.std_logic_misc.all; ack <= or_reduce(ack_vector);
Altera_Forum
名誉コントリビューター II
3,398件の閲覧回数

Work 

thank you :)
NBerg1
ビギナー
3,398件の閲覧回数

Are there any plans fro generally supporting VHDL-2008 in the Standard Quartus anyime soon?

JC_FPGA
初心者
3,183件の閲覧回数

I just came across this thread in a search.  It's been three years since this thread was created and the OR reduction operator is still not supported in Quartus Prime Standard Edition.  It works fine when I simulate in Questa.

返信