Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7652469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:46:42+00:00 2026-05-31T11:46:42+00:00

I have a signal in VHDL declared like this : signal Temp_Key : std_logic_vector(79

  • 0

I have a signal in VHDL declared like this :

signal Temp_Key : std_logic_vector(79 downto 0);

This Temp_Key is passed through a for loop 31 times and it is modified. I want to store all the 31 different Temp_Keys in an array.

Is it possible to use multi-dimensional arrays in VHDL to store 80 bit signals ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T11:46:43+00:00Added an answer on May 31, 2026 at 11:46 am

    Yes, first you need to declare a type:

    type YOUR_ARRAY_TYPE is array (0 to 30) of std_logic_vector(79 downto 0);
    

    Note you can also declare the type to be of undefined length – so you can specify how many 80 bit words it has when you declare your signal. And with VHDL 2008, you can also leave the size of the slv unspecified, also to be declared when you create your signal. For example:

    type slv_array is array (natural range <>) of std_logic_vector;
    

    and then use it

    signal MY_SIGNAL : YOUR_ARRAY_TYPE;
    ...
    MY_SIGNAL(0) <= data;
    ...
    MY_SIGNAL(1) <= data;
    

    See here for a reference.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

gcc (GCC) 4.6.0 c89 I have a signal handler declared like this: /* Setup
I have the following code snippet in vhdl: signal s: signed(31 downto 0); s
I have a signal like this: public var e_collision:Signal = new Signal(GameObj); When the
I have a thread in an application that has a loop like this: ...
I have this output when trying to debug Program received signal SIGSEGV, Segmentation fault
I have a subclass of QTableWidget with the following code: connect(this, SIGNAL(cellChanged(int, int)), this,
I have a signal and this signal is a bitvector (Z). The length of
I have a signal generated by a simulation program. Because the solver in this
Does ScanResult.level (signal level) have a max and min value? I want to show
Let's say I have this signal: signals: void progressNotification(int progress); I only recently learned

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.