Skip to content

Commit

Permalink
[docs] minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
stnolting committed Jun 30, 2023
1 parent 33cc6ff commit 60d1db1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/datasheet/cpu.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ The `I` ISA extensions is the base RISC-V integer ISA that is always enabled.
| ALU shifts | `sll[i]` `srl[i]` `sra[i]` | 3 + 1..32; FAST_SHIFT: 4
| Branches | `beq` `bne` `blt` `bge` `bltu` `bgeu` | taken: 6; not taken: 3
| Jump/call | `jal[r]` | 6
| Load/store | `lb` `lh` `lw` `lbu` `lhu` `sb` `sh` `sw` | 4
| Load/store | `lb` `lh` `lw` `lbu` `lhu` `sb` `sh` `sw` | 5
| System | `ecall` `ebreak` | 3
| Data fence | `fence` | 5
| Illegal inst. | - | 3
Expand Down
3 changes: 2 additions & 1 deletion docs/datasheet/soc_dcache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ when they are mapped to upper-most 256 MB address page (see section <<_address_s
.Caching Internal Memories
[NOTE]
The data cache is intended to accelerate data access to **processor-external** memories
(via the external bus interface or via the XIP module).
(via the external bus interface or via the XIP module). The cache(s) should not be implemented
when using only processor-internal data and instruction memories.

.Manual Cache Clear/Reload
[NOTE]
Expand Down
3 changes: 2 additions & 1 deletion docs/datasheet/soc_icache.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ used) is used.
.Caching Internal Memories
[NOTE]
The instruction cache is intended to accelerate instruction fetches from **processor-external** memories
(via the external bus interface or via the XIP module).
(via the external bus interface or via the XIP module). The cache(s) should not be implemented
when using only processor-internal data and instruction memories.

.Manual Cache Clear/Reload
[NOTE]
Expand Down

0 comments on commit 60d1db1

Please sign in to comment.