diff options
author | Joachim StroĢmbergson <joachim@secworks.se> | 2015-03-26 15:14:30 +0100 |
---|---|---|
committer | Joachim StroĢmbergson <joachim@secworks.se> | 2015-03-26 15:14:30 +0100 |
commit | cf417534410b9c429941f0d22240dceb9b0ea7b0 (patch) | |
tree | d96ca8c0870451dbfe4549e9a8b01bbb2b8e7a3e /src | |
parent | 43a95473cbeee8e160cba63c5b70675a91b22614 (diff) |
Changed to Verilog 2001 part select for word extraction.
Diffstat (limited to 'src')
-rw-r--r-- | src/rtl/trng_csprng_fifo.v | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/rtl/trng_csprng_fifo.v b/src/rtl/trng_csprng_fifo.v index adbc83a..70c0e1f 100644 --- a/src/rtl/trng_csprng_fifo.v +++ b/src/rtl/trng_csprng_fifo.v @@ -216,25 +216,7 @@ module trng_csprng_fifo( reg [511 : 0] fifo_rd_data; fifo_rd_data = fifo_mem[rd_ptr_reg]; - - case(mux_data_ptr_reg) - 00: muxed_data = fifo_rd_data[031 : 000]; - 01: muxed_data = fifo_rd_data[063 : 032]; - 02: muxed_data = fifo_rd_data[095 : 064]; - 03: muxed_data = fifo_rd_data[127 : 096]; - 04: muxed_data = fifo_rd_data[159 : 128]; - 05: muxed_data = fifo_rd_data[191 : 160]; - 06: muxed_data = fifo_rd_data[223 : 192]; - 07: muxed_data = fifo_rd_data[255 : 224]; - 08: muxed_data = fifo_rd_data[287 : 256]; - 09: muxed_data = fifo_rd_data[319 : 288]; - 10: muxed_data = fifo_rd_data[351 : 320]; - 11: muxed_data = fifo_rd_data[383 : 352]; - 12: muxed_data = fifo_rd_data[415 : 384]; - 13: muxed_data = fifo_rd_data[447 : 416]; - 14: muxed_data = fifo_rd_data[479 : 448]; - 15: muxed_data = fifo_rd_data[511 : 480]; - endcase // case (mux_data_ptr_reg) + muxed_data = fifo_rd_data[mux_data_ptr_reg * 32 +: 32]; end // output_data_mux |