u-boot/examples/standalone/hello_world.c

39 lines
694 B
C
Raw Normal View History

2002-10-07 16:54:55 +00:00
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*
* SPDX-License-Identifier: GPL-2.0+
2002-10-07 16:54:55 +00:00
*/
#include <common.h>
#include <exports.h>
2002-10-07 16:54:55 +00:00
int hello_world (int argc, char * const argv[])
2002-10-07 16:54:55 +00:00
{
int i;
/* Print the ABI version */
app_startup(argv);
printf ("Example expects ABI version %d\n", XF_VERSION);
printf ("Actual U-Boot ABI version %d\n", (int)get_version());
2002-10-07 16:54:55 +00:00
printf ("Hello World\n");
printf ("argc = %d\n", argc);
2002-10-07 16:54:55 +00:00
for (i=0; i<=argc; ++i) {
printf ("argv[%d] = \"%s\"\n",
2002-10-07 16:54:55 +00:00
i,
argv[i] ? argv[i] : "<NULL>");
}
printf ("Hit any key to exit ... ");
while (!tstc())
2002-10-07 16:54:55 +00:00
;
/* consume input */
(void) getc();
2002-10-07 16:54:55 +00:00
printf ("\n\n");
2002-10-07 16:54:55 +00:00
return (0);
}