mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
Merge pull request #79 from xobs/fix-vexriscv-data-read
vexriscv: debug: fix reading DATA register
This commit is contained in:
commit
b062d4dddc
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ class VexRiscv(Module, AutoCSR):
|
|||
# A write to the REFRESH register indicates which register
|
||||
# (DATA or CORE) we want to update from the CPU.
|
||||
).Elif(debug_refresh.re,
|
||||
If(~debug_refresh.storage,
|
||||
If(debug_refresh.storage == 0,
|
||||
refreshing_data.eq(0),
|
||||
debug_bus_cmd_payload_address.eq(0)
|
||||
).Else(
|
||||
|
|
Loading…
Reference in a new issue