added license, moved cell libs into repo

added buffer (not tested),
This commit is contained in:
2022-02-21 00:14:02 +01:00
parent 4bf73a8566
commit 48b691d7d4
17 changed files with 1571 additions and 91 deletions

View 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);
}