1
0
mirror of git://projects.qi-hardware.com/nn-usb-fpga.git synced 2025-04-21 12:27:27 +03:00

Adding plasma example

This commit is contained in:
Carlos Camargo
2010-04-21 20:01:38 -05:00
parent f80360a678
commit 22c469585b
59 changed files with 18082 additions and 0 deletions

24
plasma/tools/Makefile Normal file
View File

@@ -0,0 +1,24 @@
CC_X86 = gcc -Wall -O -g
CP = cp
RM = rm -rf
DWIN32 =
BIN_MIPS =
VHDL_DIR = ../logic
LINUX_PWD = ./
CONVERT_BIN = $(LINUX_PWD)convert_bin
CFLAGS = -O2 -Wall -c -s
all: ramimage mlite
rm -rf ../bin
mkdir ../bin; mv ramimage ../bin; mv mlite ../bin
clean:
-$(RM) *.o *.obj *.map *.lst *.hex *.txt
ramimage: ramimage.c
@$(CC_X86) -o ramimage ramimage.c
mlite: mlite.c
@$(CC_X86) -o mlite mlite.c