Readme, License Fixes and another test added

This commit is contained in:
Jordi Baylina
2018-09-05 19:46:24 +02:00
parent 276a28c73e
commit 296defda85
22 changed files with 18 additions and 79 deletions

View File

@@ -0,0 +1,10 @@
template RotR(n, r) {
signal input in[n];
signal output out[n];
for (i=0; i<n; i++) {
out[i] <== in[ (i+r)%n ];
}
}