soc/integration/soc_core/SoCController: specify initial reset value of scratch regist...
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Thu, 2 Jan 2020 08:41:47 +0000 (09:41 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Thu, 2 Jan 2020 08:41:47 +0000 (09:41 +0100)
litex/soc/integration/soc_core.py

index 9e99f56de89d3deee506d13ed92d0d9b96a64459..6c564e22dc9ddd6341e9a623d9843c8781385927 100644 (file)
@@ -45,8 +45,8 @@ class SoCController(Module, AutoCSR):
             Write a ``1`` to this register to reset the SoC.""")
         self._scratch    = CSRStorage(32, reset=0x12345678, description="""
             Use this register as a scratch space to verify that software read/write accesses
-            to the Wishbone/CSR bus are working correctly. The initial reset value can be used
-            to verify endianness.""")
+            to the Wishbone/CSR bus are working correctly. The initial reset value of 0x1234578
+            can be used to verify endianness.""")
         self._bus_errors = CSRStatus(32, description="""
             Total number of Wishbone bus errors (timeouts) since last reset.""")