Skip to content

Commit

Permalink
soc/integration/soc_core/SoCController: specify initial reset value o…
Browse files Browse the repository at this point in the history
…f scratch register in description
  • Loading branch information
enjoy-digital committed Jan 2, 2020
1 parent b65a36e commit 197edad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions litex/soc/integration/soc_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def __init__(self):
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.""")

Expand Down

0 comments on commit 197edad

Please sign in to comment.