module Instruction_memory(
input wire[31:0] ImemRdAddr,
output reg[31:0] Instruction
);
reg [31:0] InstMem[0:255];
initial begin
$readmemh("Instruction",InstMem);
end
always @(ImemRdAddr) begin
Instruction <= InstMem[ImemRdAddr>>2];
end
endmodule