From 8c6a333f877dd8fd1033f4378ff289a82e45f012 Mon Sep 17 00:00:00 2001 From: Jean THOMAS Date: Tue, 21 Jul 2020 14:21:22 +0200 Subject: [PATCH] Use 0x00BA0BAB instead of 0x12345678 for better readability --- gram/simulation/simsoctb.v | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2