I am creating a AES verilog code, and I need to collect 16 input [7:0] each one in a 4x4 matrix, so I need to define it and implement the inicialization of the matrix. How can I do that?
|
closed as not a real question by Tim, S.L. Barth, tombom, toolic, Ragunath Jawahar Nov 15 '12 at 18:29
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If you are asking how to create Verilog inputs to take that array, you could have multiple inputs, packed arrays or in some cases unpacked arrays. Multiple inputs:
Unpacked Array
Packed Array, not as common as the other types:
I am not sure how well multi-dimensional arrays are supported as ports, but in SystemVerilog 2001 Multi dimensional Array types are supported. To hold the data as a 4x4 Array:
If this is not an input matrix but bit shifted in and stored in flip-flops the initialization would be done by a reset signal or another clear signal, for an asynchronous reset :
NB: The for loops are unrolled at compilation time there is nothing dynamic in the hardware. |
||||
|
|