diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 21:59:20 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2002-04-23 21:59:20 +0000 |
commit | 8ee52130f0105723186d648688548be0561b8e08 (patch) | |
tree | 64c455cc9d80b8d07200dd8eb648d6d59cdb0e65 /gdb/start.s | |
parent | 3236c3581b591e2d482e356b979738ccc4b8f08f (diff) | |
download | rockbox-8ee52130f0105723186d648688548be0561b8e08.tar.gz rockbox-8ee52130f0105723186d648688548be0561b8e08.zip |
Fixed the mess with all the different stacks
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@204 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'gdb/start.s')
-rw-r--r-- | gdb/start.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/start.s b/gdb/start.s index 88ad906b70..e902db7ad6 100644 --- a/gdb/start.s +++ b/gdb/start.s @@ -23,7 +23,7 @@ .section .text .extern _INIT .extern _vectable - .extern _init_stack + .extern _stack .global _start .align 2 @@ -36,6 +36,6 @@ _start: nop 1: .long _vectable -2: .long _init_stack+2*1024*4 +2: .long _stack 3: .long _INIT .type _start,@function |