circuit: fix comment

This commit is contained in:
Mark Spanbroek 2024-02-08 15:17:55 +01:00
parent bbc97a796a
commit 03226459d9

View File

@ -17,7 +17,7 @@ template Log2(n) {
signal output mask[n+1];
// mask will be a vector [1,1,1,...1,0,...,0,0]
// which can change only where inp == 2^out
// which can change only where index == out
var log2 = -1;
for(var i=0; i<=n; i++) {