aboutsummaryrefslogtreecommitdiffstats
path: root/firmware/hello.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/hello.c')
-rw-r--r--firmware/hello.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/firmware/hello.c b/firmware/hello.c
new file mode 100644
index 0000000..b7e0b96
--- /dev/null
+++ b/firmware/hello.c
@@ -0,0 +1,14 @@
+// This is free and unencumbered software released into the public domain.
+//
+// Anyone is free to copy, modify, publish, use, compile, sell, or
+// distribute this software, either in source code form or as a compiled
+// binary, for any purpose, commercial or non-commercial, and by any
+// means.
+
+#include "firmware.h"
+
+void hello(void)
+{
+ print_str("hello world\n");
+}
+