10 lines
232 B
Plaintext
10 lines
232 B
Plaintext
|
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);
|
||
|
}
|