Hello, I need to create 6X6 2D array in MIPS, but I don't have any idea and I cannot find any information about it. any help?

To create a two-dimensional array is simple. Instead of a single
index you will have two axises with which to index into your array.
For a [50][25] do: Y * 25 + X, where 25 is the width or number of columns,
Y is the row, X the column.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.