1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-03-10 04:24:30 +00:00

litedram: Improve dram_tb error output

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Benjamin Herrenschmidt
2020-06-10 17:58:27 +10:00
parent 7577cb18fb
commit 7192ee825f

View File

@@ -236,14 +236,14 @@ begin
wb_read(a);
wait_acks(1);
read_data(d);
assert d = x"0123456789abcdef" report "bad data" severity failure;
assert d = x"0123456789abcdef" report "bad data, got " & to_hstring(d) severity failure;
report "Simple read hit...";
clr_acks;
wb_read(a);
wait_acks(1);
read_data(d);
assert d = x"0123456789abcdef" report "bad data" severity failure;
assert d = x"0123456789abcdef" report "bad data, got " & to_hstring(d) severity failure;
report "Back to back 4 stores 4 reads on hit...";
clr_acks;