fix rdata output

This commit is contained in:
2022-12-07 20:03:13 -07:00
parent 2c19633fb5
commit f8c7460b29
2 changed files with 41 additions and 0 deletions

View File

@@ -146,6 +146,8 @@ initial begin
bh_assert_equal(axil_bvalid, 0, "Initial bvalid");
bh_assert_equal(axil_rvalid, 0, "Initial rvalid");
// Write 0xdeadbeef @ 12
#10
bh_info("Starting write...");
axil_awaddr = 12;
@@ -184,6 +186,8 @@ initial begin
axil_bready = 0;
bh_info("Write complete...");
// Read 0x00000000 @ 13
#10
bh_info("Starting Read...");
axil_araddr = 13;
@@ -215,6 +219,39 @@ initial begin
axil_rready = 0;
bh_info("Read complete...");
// Read 0xdeadbeef @ 12
#10
bh_info("Starting Read...");
axil_araddr = 12;
axil_arprot = 0; // TODO: protection values
axil_arvalid = 1;
#10
axil_arvalid = 0;
#10
bh_assert_equal(wb_stb_o, 1, "Wishbone read stb");
bh_assert_equal(wb_sel_o, 1, "Wishbone read sel");
bh_assert_equal(wb_cyc_o, 1, "Wishbone read cyc");
bh_assert_equal(wb_we_o, 0, "Wishbone read we");
wb_ack_i = 1;
#10
bh_assert_equal(wb_stb_o && wb_sel_o && wb_cyc_o, 0, "Wishbone read complete (stb && sel && cyc)");
wb_ack_i = 0;
#10
bh_assert_equal(axil_rvalid, 1, "Read rvalid");
bh_assert_equal(axil_rdata, 32'hdeadbeef, "Read rdata");
bh_assert_equal(axil_rresp, 0, "Read rresp");
axil_rready = 1;
#10
bh_assert_equal(axil_rvalid, 0, "Read rvalid");
axil_rready = 0;
bh_info("Read complete...");
#10
bh_assert_stats();
$finish;