[cpu] bus fence comment edit

This commit is contained in:
stnolting 2024-02-11 11:26:16 +01:00
parent 14778bbc6d
commit 5235d6ec84
2 changed files with 2 additions and 2 deletions

View file

@ -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) -----------------------------------------------------

View file

@ -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 ------------------------------------------------