From 12a1170111dc210b54aa499ae5bb7ee245331945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joachim=20Stro=CC=88mbergson?= Date: Tue, 16 Sep 2014 17:23:39 +0200 Subject: Fixed incorrect bit index. --- src/rtl/trng_csprng_fifo.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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]; -- cgit v1.2.3