diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-10 08:34:25 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1997-02-10 08:34:25 +0000 |
commit | 92a4594b391d1b6615e29f92fd84176b93c93915 (patch) | |
tree | 4b88d9f8bdee0c1dc407c890fb94c3e8a15231a5 /sys | |
parent | b0c0e03001cfcbc45e308b0e8dfd56996cea6afa (diff) |
add kernel_text symbol
Diffstat (limited to 'sys')
-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 |