2022-02-21 13:01:45 +01:00
|
|
|
import tmpl::dataflow_neuro
|
2022-02-21 00:14:02 +01:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|