add a few more fw examples

This commit is contained in:
2020-06-18 12:15:52 +02:00
parent a96cb14dcf
commit 27cad2f819
166 changed files with 16803 additions and 0 deletions

13
hello/Makefile Normal file
View File

@ -0,0 +1,13 @@
TARGET = hello
C_SRCS += $(wildcard *.c)
CFLAGS += -g
#-fno-builtin-printf
LDFLAGS := -Wl,--wrap=scanf -Wl,--wrap=printf
#BOARD = iss
BOARD=freedom-e300-hifive1
TOOL_DIR=/opt/shared/riscv/FreedomStudio/20180122/SiFive/riscv64-unknown-elf-gcc-20171231-x86_64-linux-centos6/bin
BSP_BASE = ./bsp
include $(BSP_BASE)/env/common.mk