Use 0x00BA0BAB instead of 0x12345678 for better readability
authorJean THOMAS <git0@pub.jeanthomas.me>
Tue, 21 Jul 2020 12:21:22 +0000 (14:21 +0200)
committerJean THOMAS <git0@pub.jeanthomas.me>
Tue, 21 Jul 2020 12:21:22 +0000 (14:21 +0200)
gram/simulation/simsoctb.v

index 5c25c2fa8e453fa60238c92070ada6ec931ec03b..c9546c35f8d133be7d074350c9b72a3115126d4e 100644 (file)
@@ -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