Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
Announcements
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.

declaration in vhdl

Altera_Forum
Honored Contributor II
1,176 Views

plese help me in debugging this error in vhdl 

my code contains the following statement 

fifo_out_port : OUT ARRAY8x8; 

 

and it gives the following error 

Error (10482): VHDL error at output_fifo.vhd(43): object "ARRAY8x8" is used but not declared 

 

help me in declaring this in in my package
0 Kudos
1 Reply
Altera_Forum
Honored Contributor II
427 Views

I don't know what base type you need, but declaring an array is done like this: 

 

type my_array_t is array(integer range <>) of some_other_type;
0 Kudos
Reply