Skip to content

Commit

Permalink
Disable bypassing and branch prediction by default
Browse files Browse the repository at this point in the history
This significantly increases the max possible clock speed (~50 MHz on
iCE40 HX devices, ~20 MHz on UP devices).
  • Loading branch information
grahamedgecombe committed Feb 5, 2019
1 parent a357132 commit 68dca9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rv32.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

module rv32 #(
parameter RESET_VECTOR = 32'b0,
parameter BYPASSING = 1,
parameter BRANCH_PREDICTION = 1
parameter BYPASSING = 0,
parameter BRANCH_PREDICTION = 0
) (
input clk,
input reset,
Expand Down

0 comments on commit 68dca9d

Please sign in to comment.