Skip to content

Commit

Permalink
Fixed a typo regarding LOOP_LOG2.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpgaminer committed Aug 7, 2011
1 parent 49b55f2 commit d09f2a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/fpgaminer_top.v
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
module fpgaminer_top (osc_clk);

// The LOOP_LOG2 parameter determines how unrolled the SHA-256
// calculations are. For example, a setting of 1 will completely
// unroll the calculations, resulting in 128 rounds and a large, fast
// design.
// calculations are. For example, a setting of 0 will completely
// unroll the calculations, resulting in 128 rounds and a large, but
// fast design.
//
// A setting of 2 will result in 64 rounds, with half the size and
// half the speed. 3 will be 32 rounds, with 1/4th the size and speed.
// A setting of 1 will result in 64 rounds, with half the size and
// half the speed. 2 will be 32 rounds, with 1/4th the size and speed.
// And so on.
//
// Valid range: [0, 5]
Expand Down

0 comments on commit d09f2a1

Please sign in to comment.