[Cryptech-Commits] [core/math/modexp] 01/01: Fixed incorrect types.

git at cryptech.is git at cryptech.is
Tue Apr 21 14:25:37 UTC 2015


This is an automated email from the git hooks/post-receive script.

joachim at secworks.se pushed a commit to branch master
in repository core/math/modexp.

commit 868b1ce72e4459f333aaac24de0b1db428143b0d
Author: Joachim Strömbergson <joachim at secworks.se>
Date:   Tue Apr 21 16:25:29 2015 +0200

    Fixed incorrect types.
---
 src/rtl/modexp.v | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/rtl/modexp.v b/src/rtl/modexp.v
index dbf65b3..d64a556 100644
--- a/src/rtl/modexp.v
+++ b/src/rtl/modexp.v
@@ -225,11 +225,10 @@ module modexp(
 
   reg            residue_calculate;
   wire           residue_ready;
-  //wire           residue_wire; ?
-  reg [14 : 0]   residue_nn;
-  wire  [07 : 0] residue_length;
+  reg  [14 : 0]  residue_nn;
+  reg  [07 : 0]  residue_length;
   wire [07 : 0]  residue_opa_rd_addr;
-  reg  [31 : 0]  residue_opa_rd_data;
+  wire [31 : 0]  residue_opa_rd_data;
   wire [07 : 0]  residue_opa_wr_addr;
   wire [31 : 0]  residue_opa_wr_data;
   wire           residue_opa_wr_we;



More information about the Commits mailing list