diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-24 21:57:02 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-24 21:57:02 +0000 |
| commit | 5b7f45a7c622739966226449f7c605e7bf1fd3f9 (patch) | |
| tree | 8d5850d0fed8077a1490cba9586710d013e0d84e | |
| parent | db822180e75e770194778d74423b7f78496a8ca1 (diff) | |
| download | rockbox-5b7f45a7c622739966226449f7c605e7bf1fd3f9.zip rockbox-5b7f45a7c622739966226449f7c605e7bf1fd3f9.tar.gz rockbox-5b7f45a7c622739966226449f7c605e7bf1fd3f9.tar.bz2 rockbox-5b7f45a7c622739966226449f7c605e7bf1fd3f9.tar.xz | |
Moved code to section .init.text
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@217 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/crt0.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/crt0.S b/firmware/crt0.S index 785f405..4ea67ba 100644 --- a/firmware/crt0.S +++ b/firmware/crt0.S @@ -16,7 +16,7 @@ * KIND, either express or implied. * ****************************************************************************/ - .section .text + .section .init.text .global start start: /* We begin with some tricks. If we have built our code to be loaded |