From 197edad34e22a70d966b4f95c183294d8eb906cd Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Thu, 2 Jan 2020 09:41:47 +0100 Subject: [PATCH] soc/integration/soc_core/SoCController: specify initial reset value of scratch register in description --- litex/soc/integration/soc_core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 9e99f56de..6c564e22d 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -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.""")