Skip to content

Commit 00d772e

Browse files
committed
Fix wording
1 parent 5c43240 commit 00d772e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ jump to our boot function.
333333

334334

335335
## Minimal firmware
336-
Note: The startup code here is written in C, and included in the main.c file. Usually we have a startup.s file which is written in assembly language for initialization.
337336

338337
Let's create a file `main.c`, and specify our boot function that initially does
339338
nothing (falls into infinite loop), and specify a vector table that contains 16
@@ -369,6 +368,9 @@ generated firmware - and consecutively, at the beginning of flash memory. The
369368
first two entries are: the value of the stack pointer register, and the
370369
firmware's entry point. We leave the rest of vector table filled with zeroes.
371370

371+
NOTE: The startup code here is written in C, and included in the main.c file.
372+
Oftentimes, device SDKs have a startup.s file written in assembly.
373+
372374
### Compilation
373375

374376
Let's compile our code. Start a terminal (or a command prompt on Windows) and execute:

0 commit comments

Comments
 (0)