2010-05-31 Joel Sherrill <joel.sherrilL@OARcorp.com>

* start/start.S: Pass 0/NULL for argc/argv.
This commit is contained in:
Joel Sherrill
2010-05-31 13:52:07 +00:00
parent c48572d96b
commit eea48e2f82
2 changed files with 6 additions and 5 deletions

View File

@@ -1,3 +1,7 @@
2010-05-31 Joel Sherrill <joel.sherrilL@OARcorp.com>
* start/start.S: Pass 0/NULL for argc/argv.
2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org> 2009-10-21 Ralf Corsépius <ralf.corsepius@rtems.org>
* make/custom/m32rsim.cfg: Remove RTEMS_BSP_FAMILY. * make/custom/m32rsim.cfg: Remove RTEMS_BSP_FAMILY.

View File

@@ -4,11 +4,6 @@
* $Id$ * $Id$
*/ */
#warning Call to boot_card has changed and needs checking.
#warning The call is "void boot_card(const char* cmdline);"
#warning You need to pass a NULL.
#warning Please check and remove these warnings.
.text .text
.balign 4 .balign 4
.global _start .global _start
@@ -54,6 +49,8 @@ _start:
# Call main, then exit. # Call main, then exit.
ldi r1, #0 ; r1 = argv
ldi r0, #0 ; r0 = argc
bl boot_card bl boot_card
bl sys_exit bl sys_exit