Skip to content

Commit 761e23e

Browse files
committed
update source comments
1 parent a3c08d5 commit 761e23e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/lhca.sv

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ module lhca #(
33
parameter bit [WIDTH-1:0] DIAGONAL = WIDTH'(0)
44
) (
55
input logic clk,
6-
// a source of true randomness, i.e. ring oscillators
7-
// without it, the output will be pseudo-random,
8-
// and LHCA acts as a scrambler
6+
7+
// A source of true randomness, makes the LHCA act as a scrambler.
8+
// You can use ring oscillators for this when the oscillation
9+
// frequency is significantly higher than the clock frequency.
10+
11+
// Without it, the output will be pseudo-random,
912
input logic [WIDTH-1:0] source,
1013
output logic [WIDTH-1:0] state
1114
);

0 commit comments

Comments
 (0)