summaryrefslogtreecommitdiff
path: root/software
diff options
context:
space:
mode:
authorPalmer Dabbelt <palmer@dabbelt.com>2018-12-13 18:15:05 -0800
committerGitHub <noreply@github.com>2018-12-13 18:15:05 -0800
commit0c3b3d75eadffb9ab1d85e811cac55d54ac9d3ca (patch)
tree084c876c10af7b31f73c2d8cfb7cc4511053c128 /software
parentdca1dfaf1cfb80ec30a7a16b899efa1040e3451d (diff)
parent853e244604682b57e88535671b9c66cfbd3e8f3f (diff)
Merge pull request #113 from sifive/add-mee-support
Add MEE Support
Diffstat (limited to 'software')
m---------software/hello0
-rw-r--r--software/hello/.gitignore1
-rw-r--r--software/hello/Makefile6
-rw-r--r--software/hello/hello.c8
4 files changed, 0 insertions, 15 deletions
diff --git a/software/hello b/software/hello
new file mode 160000
+Subproject 41918cb70f42ce0cae2be36a6ba0f1df6a598f0
diff --git a/software/hello/.gitignore b/software/hello/.gitignore
deleted file mode 100644
index ce01362..0000000
--- a/software/hello/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-hello
diff --git a/software/hello/Makefile b/software/hello/Makefile
deleted file mode 100644
index 058621c..0000000
--- a/software/hello/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-TARGET = hello
-C_SRCS += hello.c
-CFLAGS += -O2 -fno-builtin-printf
-
-BSP_BASE = ../../bsp
-include $(BSP_BASE)/env/common.mk
diff --git a/software/hello/hello.c b/software/hello/hello.c
deleted file mode 100644
index befc6ee..0000000
--- a/software/hello/hello.c
+++ /dev/null
@@ -1,8 +0,0 @@
-#include <stdio.h>
-
-int main()
-{
- puts("hello world!\n");
-
- return 0;
-}