mirror of
https://github.com/supleed2/ELEC50010-IAC-CW.git
synced 2024-11-10 01:35:49 +00:00
48 lines
1.6 KiB
Verilog
48 lines
1.6 KiB
Verilog
module mips_cpu_bus_memory( //Avalon memory mapped bus controller (slave)
|
|
input logic clk,
|
|
input logic[31:0] address,
|
|
input logic write,
|
|
input logic read,
|
|
output logic waitrequest,
|
|
input logic[31:0] writedata,
|
|
input logic[3:0] byteenable,
|
|
output logic[31:0] readdata
|
|
);
|
|
|
|
parameter INSTR_INIT_FILE = "";
|
|
parameter DATA_INIT_FILE = "";
|
|
|
|
reg [31:0] data_memory [0:63]; // location 0x00001000 onwards
|
|
reg [31:0] instr_memory [0:63]; // location 0xBFC00000 onwards
|
|
|
|
initial begin
|
|
for (integer i=0; i<$size(data_memory); i++) begin //Initialise data to zero by default
|
|
data_memory[i] = 0;
|
|
end
|
|
|
|
for (integer i=0; i<$size(instr_memory); i++) begin //Initialise instr to zero by default
|
|
instr_memory[i] = 0;
|
|
end
|
|
|
|
if (INSTR_INIT_FILE != "") begin //Load instr contents from file if specified
|
|
$display("RAM: Loading RAM contents from %s", INSTR_INIT_FILE);
|
|
$readmemh(INSTR_INIT_FILE, instr_memory);
|
|
end
|
|
|
|
for (integer i = 0; i<$size(instr_memory); i++) begin //Read out instr contents to log
|
|
$display("byte +%h: %h", 32'hBFC00000+i*4, instr_memory[i]);
|
|
end
|
|
|
|
if (DATA_INIT_FILE != "") begin //Load data contents from file if specified
|
|
$display("MEM: Loading MEM contents from %s", DATA_INIT_FILE);
|
|
$readmemh(DATA_INIT_FILE, data_memory);
|
|
end else begin
|
|
$display("MEM FILE NOT GIVEN");
|
|
end
|
|
|
|
for (integer i = 0; i<$size(data_memory); i++) begin //Read out data contents to log
|
|
$display("byte +%h: %h", 32'h00001000+i*4, data_memory[i]);
|
|
end
|
|
end
|
|
|
|
endmodule |