diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-11-15 15:15:01 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-11-15 15:15:01 +0000 |
commit | c1556ac427e14f9275da6526a621bb07546609b9 (patch) | |
tree | ca126fb1eb627049310e80295492c917810e908d | |
parent | c70b5d2f3a7d6da24dd0f4c136382c93694b36c4 (diff) |
need this code
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1281 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/arch/ppc/lib/c_start.S | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/arch/ppc/lib/c_start.S b/src/arch/ppc/lib/c_start.S index a3b963dbc6..3fcf840615 100644 --- a/src/arch/ppc/lib/c_start.S +++ b/src/arch/ppc/lib/c_start.S @@ -15,10 +15,10 @@ .globl _start _start: -#if CONFIG_USE_INIT == 0 /* * init stack pointer to real ram now that memory is on */ + li r0, 0 lis r1, _estack@ha addi r1, r1, _estack@l stwu r0,-64(r1) @@ -107,4 +107,3 @@ __DTOR_LIST__: .globl __DTOR_END__ __DTOR_END__: blr -#endif |