u-boot-brain/examples/standalone/hello_world.c

38 lines
689 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0+
2002-10-08 01:54:55 +09:00
/*
* (C) Copyright 2000
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
*/
#include <common.h>
#include <exports.h>
2002-10-08 01:54:55 +09:00
int hello_world(int argc, char *const argv[])
2002-10-08 01:54:55 +09: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-08 01:54:55 +09:00
printf ("Hello World\n");
printf ("argc = %d\n", argc);
2002-10-08 01:54:55 +09:00
for (i=0; i<=argc; ++i) {
printf ("argv[%d] = \"%s\"\n",
2002-10-08 01:54:55 +09:00
i,
argv[i] ? argv[i] : "<NULL>");
}
printf ("Hit any key to exit ... ");
while (!tstc())
2002-10-08 01:54:55 +09:00
;
/* consume input */
(void) getc();
2002-10-08 01:54:55 +09:00
printf ("\n\n");
2002-10-08 01:54:55 +09:00
return (0);
}