2023-10-23 05:15:21 +00:00
|
|
|
module instruction (input [31:0] address,
|
|
|
|
output [31:0] instruction);
|
2023-10-20 09:48:18 +00:00
|
|
|
|
2023-10-22 13:41:39 +00:00
|
|
|
reg [31:0] memory [63:0];
|
|
|
|
|
2023-10-20 09:48:18 +00:00
|
|
|
assign instruction = memory[address];
|
|
|
|
|
|
|
|
endmodule
|