summaryrefslogtreecommitdiff
path: root/gdb/start.s
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:59:20 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:59:20 +0000
commit8ee52130f0105723186d648688548be0561b8e08 (patch)
tree64c455cc9d80b8d07200dd8eb648d6d59cdb0e65 /gdb/start.s
parent3236c3581b591e2d482e356b979738ccc4b8f08f (diff)
downloadrockbox-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.s4
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 @@
23 .section .text 23 .section .text
24 .extern _INIT 24 .extern _INIT
25 .extern _vectable 25 .extern _vectable
26 .extern _init_stack 26 .extern _stack
27 .global _start 27 .global _start
28 .align 2 28 .align 2
29 29
@@ -36,6 +36,6 @@ _start:
36 nop 36 nop
37 37
381: .long _vectable 381: .long _vectable
392: .long _init_stack+2*1024*4 392: .long _stack
403: .long _INIT 403: .long _INIT
41 .type _start,@function 41 .type _start,@function