diff options
-rw-r--r-- | sys/arch/atari/atari/locore.s | 2 | ||||
-rw-r--r-- | sys/arch/pc532/pc532/locore.s | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/sys/arch/atari/atari/locore.s b/sys/arch/atari/atari/locore.s index 128db4ee718..c5eb67a1112 100644 --- a/sys/arch/atari/atari/locore.s +++ b/sys/arch/atari/atari/locore.s @@ -53,6 +53,8 @@ #include <atari/atari/vectors.s> .text +_C_LABEL(kernel_text): + /* * This is where we wind up if the kernel jumps to location 0. * (i.e. a bogus PC) This is known to immediately follow the vector diff --git a/sys/arch/pc532/pc532/locore.s b/sys/arch/pc532/pc532/locore.s index 71bb6a36570..0637e3ebe6c 100644 --- a/sys/arch/pc532/pc532/locore.s +++ b/sys/arch/pc532/pc532/locore.s @@ -80,6 +80,8 @@ __have_fpu: .long 0 .text .globl start +.globl _C_LABEL(kernel_text) +_C_LABEL(kernel_text) = start start: br here_we_go |