* startup/start.S: Clear environment pointer for bootcard.
This commit is contained in:
Joel Sherrill
2008-08-05 13:32:58 +00:00
parent 7a7c6f3fee
commit 3f4eb31d56
2 changed files with 10 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2008-08-01 Sebastian Huber <sebastian.huber@embedded-brains.de>
* startup/start.S: Clear environment pointer for bootcard.
2008-07-31 Joel Sherrill <joel.sherrill@OARcorp.com>
* Makefile.am: Do not build .rel files. Reduces code bloat.

View File

@@ -207,12 +207,13 @@ start:
* Start RTEMS
*/
/* Clear argc and argv */
xor r3, r3, r3
xor r4, r4, r4
/* Clear argc, argv and envp */
xor r3, r3, r3
xor r4, r4, r4
xor r5, r5, r5
/* Start RTEMS */
bl SYM (boot_card)
bl SYM (boot_card)
/* Spin around */
b twiddle