minidol: initial commit
authorSebastian <basti@sraa.de>
Wed, 9 Oct 2013 13:39:39 +0000 (15:39 +0200)
committerSebastian <basti@sraa.de>
Wed, 9 Oct 2013 13:39:39 +0000 (15:39 +0200)
commitdea7a4fb1ed110d3ce6e6d9255103d724bd66c0e
tree63ccb03cbf92c90ac29098538ed5a6b374fa061d
parent3e30b001296fb059cb070498bbe5d8e8834cd3e3
minidol: initial commit

Simple DOL-application consisting of the two blocks "Gen" (generate
a sequence of numbers) and "Square" (squares numbers) including the
block wrappers, DOL communication liberary, host application and
build system.

Buffer sizes are defined in shared.h and hsrc/main.c, ports are
assigned to buffers in the wrappers. Buffers are located in shared
memory (external DRAM).

The files shared.h, lib/*_Wrapper.c and hsrc/main.c will need to be
generated by the DOL toolchain; all other files are static.
15 files changed:
minidol/Makefile
minidol/esrc/Gen.c [new file with mode: 0644]
minidol/esrc/Gen.h [new file with mode: 0644]
minidol/esrc/Square.c [new file with mode: 0644]
minidol/esrc/Square.h [new file with mode: 0644]
minidol/hsrc/main.c [new file with mode: 0644]
minidol/lib/Gen_Wrapper.c [new file with mode: 0644]
minidol/lib/Square_Wrapper.c [new file with mode: 0644]
minidol/lib/dol.c [new file with mode: 0644]
minidol/lib/dol.h [new file with mode: 0644]
minidol/lib/index.c [new file with mode: 0644]
minidol/lib/index.h [new file with mode: 0644]
minidol/lib/ports.c [new file with mode: 0644]
minidol/lib/ports.h [new file with mode: 0644]
minidol/shared.h [new file with mode: 0644]