mirror of
https://github.com/stnolting/neorv32.git
synced 2025-04-23 21:57:33 -04:00
[cpu] bus fence comment edit
This commit is contained in:
parent
14778bbc6d
commit
5235d6ec84
2 changed files with 2 additions and 2 deletions
|
@ -438,7 +438,7 @@ begin
|
|||
bus_req_o.rw <= '0'; -- read-only
|
||||
bus_req_o.src <= '1'; -- source = instruction fetch
|
||||
bus_req_o.rvso <= '0'; -- cannot be a reservation set operation
|
||||
bus_req_o.fence <= ctrl.lsu_fence; -- fence(.i) operation
|
||||
bus_req_o.fence <= ctrl.lsu_fence; -- fence(.i) operation, valid without STB being set
|
||||
|
||||
|
||||
-- Instruction Prefetch Buffer (FIFO) -----------------------------------------------------
|
||||
|
|
|
@ -125,7 +125,7 @@ begin
|
|||
bus_req_o.src <= '0'; -- 0 = data access
|
||||
|
||||
-- data/instruction fence(.i)
|
||||
bus_req_o.fence <= ctrl_i.lsu_fence;
|
||||
bus_req_o.fence <= ctrl_i.lsu_fence; -- this is valid even without STB being set
|
||||
|
||||
|
||||
-- Data Output - Alignment and Byte Enable ------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue