We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ddd5c1 commit 7181b26Copy full SHA for 7181b26
1 file changed
src/user_peripherals/trng/TRNG_20RO7FF_PC.sv
@@ -36,7 +36,7 @@ module tqvp_TRNG_20RO7FF_PC #(
36
integer i;
37
integer j;
38
39
- always_comb @(*) begin //Ring oscilators Construction logic
+ always @(*) begin //Ring oscilators Construction logic
40
41
for (j = 0; j < N_RO; j = j + 1) begin
42
for (i = 1; i <= SIZE_RO; i = i + 1) begin
@@ -52,7 +52,7 @@ module tqvp_TRNG_20RO7FF_PC #(
52
end
53
54
55
- always_comb @(*) begin // xor logic
+ always @(*) begin // xor logic
56
xorA = oscillator_ring_Q[0] ^ oscillator_ring_Q[1];
57
for (i = 2; i < N_RO; i = i + 1) begin
58
xorA = xorA ^ oscillator_ring_Q[i];
0 commit comments