64 lines
2.0 KiB
Systemverilog
64 lines
2.0 KiB
Systemverilog
module calc_verif_top;
|
|
|
|
import uvm_pkg::*; // import the UVM library
|
|
`include "uvm_macros.svh" // Include the UVM macros
|
|
|
|
import calc_test_pkg::*;
|
|
|
|
logic clk;
|
|
logic [6 : 0] rst;
|
|
|
|
// interface
|
|
calc_if calc_vif(clk, rst);
|
|
|
|
// DUT
|
|
calc_top DUT(
|
|
.c_clk ( clk ),
|
|
.reset ( rst ),
|
|
.out_data1 ( calc_vif.out_data1 ),
|
|
.out_data2 ( calc_vif.out_data2 ),
|
|
.out_data3 ( calc_vif.out_data3 ),
|
|
.out_data4 ( calc_vif.out_data4 ),
|
|
.out_resp1 ( calc_vif.out_resp1 ),
|
|
.out_resp2 ( calc_vif.out_resp2 ),
|
|
.out_resp3 ( calc_vif.out_resp3 ),
|
|
.out_resp4 ( calc_vif.out_resp4 ),
|
|
.req1_cmd_in ( calc_vif.req1_cmd_in ),
|
|
.req1_data_in ( calc_vif.req1_data_in ),
|
|
.req2_cmd_in ( calc_vif.req2_cmd_in ),
|
|
.req2_data_in ( calc_vif.req2_data_in ),
|
|
.req3_cmd_in ( calc_vif.req3_cmd_in ),
|
|
.req3_data_in ( calc_vif.req3_data_in ),
|
|
.req4_cmd_in ( calc_vif.req4_cmd_in ),
|
|
.req4_data_in ( calc_vif.req4_data_in )
|
|
);
|
|
|
|
// run test
|
|
initial begin
|
|
uvm_config_db#(virtual calc_if)::set(null, "uvm_test_top.env", "calc_if", calc_vif);
|
|
run_test();
|
|
end
|
|
|
|
// optional waveform dump : add +WAVES on the command line
|
|
initial begin
|
|
if ($test$plusargs("WAVES")) begin
|
|
$dumpfile("calc.vcd");
|
|
$dumpvars(0, calc_verif_top);
|
|
end
|
|
end
|
|
|
|
// clock and reset init.
|
|
// Reset is active-high on all 7 lines and must be held for at least
|
|
// 7 clock cycles to propagate through the design (Vezba 5).
|
|
initial begin
|
|
clk = 0;
|
|
rst = '1;
|
|
repeat (8) @(posedge clk);
|
|
rst = '0;
|
|
end
|
|
|
|
// clock generation
|
|
always #50 clk = ~clk;
|
|
|
|
endmodule : calc_verif_top
|