We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c08d5 commit 761e23eCopy full SHA for 761e23e
src/lhca.sv
@@ -3,9 +3,12 @@ module lhca #(
3
parameter bit [WIDTH-1:0] DIAGONAL = WIDTH'(0)
4
) (
5
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
+
+ // A source of true randomness, makes the LHCA act as a scrambler.
+ // 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,
12
input logic [WIDTH-1:0] source,
13
output logic [WIDTH-1:0] state
14
);
0 commit comments