I'm trying to load values from a file into a two-dimensional array like this.
reg [31:0] RAM[63:0];
initial
$readmemh("memory.dat",RAM);
What are the alternatives? If I wanted to hardcode the values stored in the memory instead, what's the code to do that?