aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/trng_csprng.v
diff options
context:
space:
mode:
authorJoachim StroĢˆmbergson <joachim@secworks.se>2014-09-18 18:35:08 +0200
committerJoachim StroĢˆmbergson <joachim@secworks.se>2014-09-18 18:35:08 +0200
commit830dcc0ea4bfc79dfc7b96d57d8e203096ed0374 (patch)
treee8ff23090398abb3712b856321cad289e2ae8e48 /src/rtl/trng_csprng.v
parent45269ee41645bd06ab754fef6ed11b1ca6f8767b (diff)
Updates after synthesis of the complete trng.
Diffstat (limited to 'src/rtl/trng_csprng.v')
-rw-r--r--src/rtl/trng_csprng.v4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/rtl/trng_csprng.v b/src/rtl/trng_csprng.v
index 1bdc737..f9869db 100644
--- a/src/rtl/trng_csprng.v
+++ b/src/rtl/trng_csprng.v
@@ -136,8 +136,6 @@ module trng_csprng(
wire cipher_data_out_valid;
wire cipher_ready;
- reg discard_outputs;
-
wire fifo_more_data;
reg fifo_discard;
wire fifo_rnd_syn;
@@ -323,7 +321,6 @@ module trng_csprng(
ready_we = 0;
error_new = 0;
error_we = 0;
- discard_outputs = 0;
seed_ack_new = 0;
more_seed_new = 0;
fifo_discard = 0;
@@ -498,7 +495,6 @@ module trng_csprng(
cipher_block_new = {16{32'h00000000}};
cipher_block_we = 1;
block_ctr_rst = 1;
- discard_outputs = 1;
csprng_ctrl_new = CTRL_IDLE;
csprng_ctrl_we = 1;
end