added license, moved cell libs into repo
added buffer (not tested),
This commit is contained in:
9
test/unit_tests/fifo3_8bit/test.act
Normal file
9
test/unit_tests/fifo3_8bit/test.act
Normal file
@@ -0,0 +1,9 @@
|
||||
import template::dataflow_neuro
|
||||
|
||||
defproc fifo3_8bit (avMx1of2<8> A; avMx1of2<8> Y)
|
||||
{
|
||||
avMx1of2<8> _0to1,_1to2;
|
||||
buffer<8> buf0 (.in=A, .out=_0to1);
|
||||
buffer<8> buf1 (.in=_0to1, .out=_1to2);
|
||||
buffer<8> buf2 (.in=_1to2, .out=Y);
|
||||
}
|
Reference in New Issue
Block a user