[Cryptech-Commits] [core/rng/rosc_entropy] 01/01: Remove the delayed read for EIM (see core/platform/novena commit 2f58e8f).
    git at cryptech.is 
    git at cryptech.is
       
    Tue Apr 28 22:08:12 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 core/rng/rosc_entropy.
commit 4c3b76c5b8d2809b236d2396ed6a8b36be4587e8
Author: Paul Selkirk <paul at psgd.org>
Date:   Tue Apr 28 18:02:31 2015 -0400
    Remove the delayed read for EIM (see core/platform/novena commit 2f58e8f).
---
 src/rtl/rosc_entropy.v | 9 +--------
 1 file changed, 1 insertion(+), 8 deletions(-)
diff --git a/src/rtl/rosc_entropy.v b/src/rtl/rosc_entropy.v
index e83ee52..0a7e60b 100644
--- a/src/rtl/rosc_entropy.v
+++ b/src/rtl/rosc_entropy.v
@@ -118,14 +118,13 @@ module rosc_entropy(
 
 
   reg [31 : 0]  tmp_read_data;
-  reg [31 : 0]  tmp_read_data_reg;
   reg           tmp_error;
 
 
   //----------------------------------------------------------------
   // Concurrent connectivity for ports etc.
   //----------------------------------------------------------------
-  assign read_data            = tmp_read_data_reg;
+  assign read_data            = tmp_read_data;
   assign error                = tmp_error;
   assign security_error       = 0;
 
@@ -305,12 +304,6 @@ module rosc_entropy(
         end
     end
 
-   // register data for eim output
-   always @(posedge clk)
-     begin
-        tmp_read_data_reg <= tmp_read_data;
-     end
-
 endmodule // rosc_entropy_core
 
 //======================================================================
    
    
More information about the Commits
mailing list