mirror of
https://github.com/supleed2/ELEC50010-IAC-CW.git
synced 2024-11-10 01:35:49 +00:00
51 lines
1.3 KiB
Verilog
51 lines
1.3 KiB
Verilog
module mips_cpu_harvard_tb;
|
|
timeunit 1ns / 10ps;
|
|
|
|
parameter RAM_INIT_FILE = "inputs/";
|
|
parameter TIMEOUT_CYCLES = 10000;
|
|
|
|
logic clk, clk_enable, reset, active;
|
|
logic[31:0] register_v0;
|
|
logic[31:0] instr_address, instr_readdata;
|
|
logic data_read, data_write;
|
|
logic[31:0] data_readdata, data_writedata, data_address;
|
|
|
|
mips_cpu_memory #(RAM_INIT_FILE) ramInst(clk, data_address, data_write, data_read, data_writedata, data_readdata, instr_address, instr_readdata);
|
|
mips_cpu_harvard cpuInst(clk, reset, active, register_v0, clk_enable, instr_address, instr_readdata, data_address, data_write, data_read, data_writedata, data_readdata);
|
|
|
|
// Generate clock
|
|
initial begin
|
|
clk=0;
|
|
|
|
repeat (TIMEOUT_CYCLES) begin
|
|
#10;
|
|
clk = !clk;
|
|
#10;
|
|
clk = !clk;
|
|
end
|
|
|
|
$fatal(2, "Simulation did not finish within %d cycles.", TIMEOUT_CYCLES);
|
|
end
|
|
|
|
initial begin
|
|
reset <= 0;
|
|
|
|
@(posedge clk);
|
|
reset <= 1;
|
|
|
|
@(posedge clk);
|
|
reset <= 0;
|
|
|
|
@(posedge clk);
|
|
assert(running==1)
|
|
else $display("TB : CPU did not set running=1 after reset.");
|
|
|
|
while (running) begin
|
|
@(posedge clk);
|
|
end
|
|
|
|
$display("TB : finished; running=0");
|
|
$finish;
|
|
|
|
end
|
|
endmodule |