2009-04-28 Chris Johns <chrisj@rtems.org>

* start/start.S, startup/start_c.c: Update for boot_card command
        line change.
This commit is contained in:
Chris Johns
2009-04-28 06:28:46 +00:00
parent 6d3245b623
commit c5612edf0b

View File

@@ -9,9 +9,8 @@
m68k_isr_entry M68Kvec[256];
m68k_isr_entry vectors[256];
char * const __argv[]= {"main", ""};
void boot_card(int argc, char * const argv[]);
void boot_card(const char *cmdline);
/*
* This prototype really should have the noreturn attribute but
@@ -119,7 +118,7 @@ void start_c(void) {
/*
* Execute main with arguments argc and agrv.
*/
boot_card(1,__argv);
boot_card((void*)0);
reboot();
}