From 6b6954d224a954d108c10eb069f271ccaa622dd7 Mon Sep 17 00:00:00 2001 From: wjdittmar Date: Sun, 17 May 2020 00:24:35 -0700 Subject: [PATCH] changed text reference from global symbol _Entry to _Reset to reflect the linker script --- doc/02_first_boot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/02_first_boot.md b/doc/02_first_boot.md index 74653f6..8a15027 100644 --- a/doc/02_first_boot.md +++ b/doc/02_first_boot.md @@ -180,7 +180,7 @@ SECTIONS } ``` -This script tells the linker that the program's entry point is at the global symbol `_Entry`, which we export from `startup.s`. Then the script goes on to list the section layout. Starting at address `0x0`, we create the `.text` section for code, consisting first of the `.vector_table` section from `startup.o`, and then any and all other `.text` sections. We align the code to an 8-byte boundary as well. +This script tells the linker that the program's entry point is at the global symbol `_Reset`, which we export from `startup.s`. Then the script goes on to list the section layout. Starting at address `0x0`, we create the `.text` section for code, consisting first of the `.vector_table` section from `startup.o`, and then any and all other `.text` sections. We align the code to an 8-byte boundary as well. ## What's a linker anyway?