aboutsummaryrefslogtreecommitdiffstats
path: root/roms/u-boot/examples/standalone/hello_world.c
diff options
context:
space:
mode:
Diffstat (limited to 'roms/u-boot/examples/standalone/hello_world.c')
-rw-r--r--roms/u-boot/examples/standalone/hello_world.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/roms/u-boot/examples/standalone/hello_world.c b/roms/u-boot/examples/standalone/hello_world.c
new file mode 100644
index 000000000..263cd9ca0
--- /dev/null
+++ b/roms/u-boot/examples/standalone/hello_world.c
@@ -0,0 +1,37 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * (C) Copyright 2000
+ * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
+ */
+
+#include <common.h>
+#include <exports.h>
+
+int hello_world(int argc, char *const argv[])
+{
+ 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());
+
+ printf ("Hello World\n");
+
+ printf ("argc = %d\n", argc);
+
+ for (i=0; i<=argc; ++i) {
+ printf ("argv[%d] = \"%s\"\n",
+ i,
+ argv[i] ? argv[i] : "<NULL>");
+ }
+
+ printf ("Hit any key to exit ... ");
+ while (!tstc())
+ ;
+ /* consume input */
+ (void) getc();
+
+ printf ("\n\n");
+ return (0);
+}