From: Jean THOMAS Date: Tue, 21 Jul 2020 12:21:22 +0000 (+0200) Subject: Use 0x00BA0BAB instead of 0x12345678 for better readability X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c6a333f877dd8fd1033f4378ff289a82e45f012;p=gram.git Use 0x00BA0BAB instead of 0x12345678 for better readability --- diff --git a/gram/simulation/simsoctb.v b/gram/simulation/simsoctb.v index 5c25c2f..c9546c3 100644 --- a/gram/simulation/simsoctb.v +++ b/gram/simulation/simsoctb.v @@ -195,12 +195,12 @@ module simsoctb; assert_equal_32(tmp, 32'h12345678); // Write - wishbone_write(32'h10000000 >> 2, 32'h12345678); + wishbone_write(32'h10000000 >> 2, 32'h00BA0BAB); #2000; wishbone_write(32'h10000100 >> 2, 32'h00000000); #2000; wishbone_read(32'h10000000 >> 2, tmp); - assert_equal_32(tmp, 32'h12345678); + assert_equal_32(tmp, 32'h00BA0BAB); $finish; end