[Cryptech-Commits] [staging/core/rng/trng] 13/30: Fixed incorrect bit index.
git at cryptech.is
git at cryptech.is
Tue Mar 17 13:19:02 UTC 2015
This is an automated email from the git hooks/post-receive script.
paul at psgd.org pushed a commit to branch master
in repository staging/core/rng/trng.
commit 12a1170111dc210b54aa499ae5bb7ee245331945
Author: Joachim Strömbergson <joachim at secworks.se>
Date: Tue Sep 16 17:23:39 2014 +0200
Fixed incorrect bit index.
---
src/rtl/trng_csprng_fifo.v | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/rtl/trng_csprng_fifo.v b/src/rtl/trng_csprng_fifo.v
index 4d908f9..f71a152 100644
--- a/src/rtl/trng_csprng_fifo.v
+++ b/src/rtl/trng_csprng_fifo.v
@@ -253,7 +253,7 @@ module trng_csprng_fifo(
08: muxed_data = csprng_data[287 : 256];
09: muxed_data = csprng_data[313 : 282];
10: muxed_data = csprng_data[351 : 320];
- 11: muxed_data = csprng_data[383 : 351];
+ 11: muxed_data = csprng_data[383 : 352];
12: muxed_data = csprng_data[415 : 384];
13: muxed_data = csprng_data[447 : 416];
14: muxed_data = csprng_data[479 : 448];
More information about the Commits
mailing list