Commit 00a42b47 by Roman

Add hello example

Signed-off-by: Roman Bartosinski <roman@daiteq.com>
1 parent bfa2476c
Showing with 20 additions and 0 deletions
# Makefile for hello project
# required libraries in correct order
LIBS=ins bsp m softfloat ins
# C sources
SOURCES=hello.c
# all common rules
include $(TOP)/Makefile.rules
#include <my_printf.h>
#include <leon-myuart.h>
int main(void)
{
init_uart();
printf("* Hello World\n\n");
return 0;
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!