mirror of
https://github.com/YosysHQ/picorv32.git
synced 2025-01-03 03:43:38 -05:00
Fix bug in PicoSoC spimemio
This commit is contained in:
parent
51436b1c50
commit
dea9b88249
1 changed files with 1 additions and 1 deletions
|
@ -433,7 +433,7 @@ module spimemio_xfer (
|
|||
|
||||
assign din_ready = din_valid && resetn && next_fetch;
|
||||
|
||||
assign dout_valid = xfer_ddr_q ? fetch && !last_fetch : next_fetch && !fetch;
|
||||
assign dout_valid = (xfer_ddr_q ? fetch && !last_fetch : next_fetch && !fetch) && resetn;
|
||||
assign dout_data = ibuffer;
|
||||
assign dout_tag = xfer_tag_q;
|
||||
|
||||
|
|
Loading…
Reference in a new issue