Skip to content

Commit 40cbd1c

Browse files
[examples] Fix typos
1 parent 1e66330 commit 40cbd1c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/simple_system/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ comes from replacing `small` in the command above with `opentitan`.
4545

4646
Simple System related software can be found in `examples/sw/simple_system`.
4747

48-
To build the hello world example, from the Ibex reposistory root run:
48+
To build the hello world example, from the Ibex repository root run:
4949

5050
```
5151
make -C examples/sw/simple_system/hello_test

examples/sw/benchmarks/coremark/ibex/core_portme.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ void stop_time(void) {
133133
134134
Actual value returned may be cpu cycles, milliseconds or any other
135135
value, as long as it can be converted to seconds by <time_in_secs>. This
136-
methodology is taken to accomodate any hardware or simulated platform. The
136+
methodology is taken to accommodate any hardware or simulated platform. The
137137
sample implementation returns millisecs by default, and the resolution is
138138
controlled by <TIMER_RES_DIVIDER>
139139
*/
@@ -144,7 +144,7 @@ CORE_TICKS get_time(void) {
144144
/* Function : time_in_secs
145145
Convert the value returned by get_time to seconds.
146146
147-
The <secs_ret> type is used to accomodate systems with no support for
147+
The <secs_ret> type is used to accommodate systems with no support for
148148
floating point. Default implementation implemented by the EE_TICKS_PER_SEC
149149
macro above.
150150
*/

examples/sw/benchmarks/coremark/ibex/core_portme.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ extern unsigned int _stack_start;
7474
To avoid compiler issues, define the data types that need to be used for
7575
8b, 16b and 32b in <core_portme.h>.
7676
77-
*Imprtant* :
77+
*Important* :
7878
ee_ptr_int needs to be the data type used to hold pointers, otherwise
7979
CoreMark may fail!!!
8080
*/
@@ -175,7 +175,7 @@ typedef ee_u32 CORE_TICKS;
175175
#endif
176176

177177
/* Variable : default_num_contexts
178-
Not used for this simple port, must cintain the value 1.
178+
Not used for this simple port, must contain the value 1.
179179
*/
180180
extern ee_u32 default_num_contexts;
181181

examples/sw/simple_system/common/link.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OUTPUT_ARCH(riscv)
77
MEMORY
88
{
99
/* Change this if you'd like different sizes. Arty A7-100(35) has a maximum of 607.5KB(225KB)
10-
BRAM space. Configuration below is for maximum BRAM capacity with Artya A7-35 while letting
10+
BRAM space. Configuration below is for maximum BRAM capacity with Arty A7-35 while letting
1111
CoreMark run (.vmem of 152.8KB).
1212
*/
1313
ram : ORIGIN = 0x00100000, LENGTH = 0x30000 /* 192 kB */

0 commit comments

Comments
 (0)