Add device setup test using kernel drivers

This commit is contained in:
Byron Lathi
2023-11-20 08:29:35 -08:00
parent 1811457b0f
commit e6a16b0c73
7 changed files with 162 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
`timescale 1ns/1ps
module devices_setup_code_tb();
sim_top u_sim_top();
always begin
if (
u_sim_top.w_cpu_addr == 16'h0 &&
u_sim_top.w_cpu_we == '1
) begin
if (u_sim_top.w_cpu_data_from_cpu == 8'h6d) begin
$display("Good finish!");
$finish();
end else begin
$display("Bad finish!");
$finish_and_return(-1);
end
end
# 1;
end
endmodule