summaryrefslogtreecommitdiff
path: root/rtl/core/control/branch.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-11-09 09:25:48 -0600
committerAlejandro Soto <alejandro@34project.org>2022-11-09 09:25:48 -0600
commit5d798386c3b1c1dc45a2fbc382c9367ccc27c524 (patch)
treea04fff74505af30c8044f80f523fd887331e6234 /rtl/core/control/branch.sv
parent65590be80332d132d7037bfe3bb19e5d6e5bcd7b (diff)
Implement reset
Diffstat (limited to 'rtl/core/control/branch.sv')
-rw-r--r--rtl/core/control/branch.sv22
1 files changed, 11 insertions, 11 deletions
diff --git a/rtl/core/control/branch.sv b/rtl/core/control/branch.sv
index 59a4f54..96e6e65 100644
--- a/rtl/core/control/branch.sv
+++ b/rtl/core/control/branch.sv
@@ -3,6 +3,7 @@
module core_control_branch
(
input logic clk,
+ rst_n,
input insn_decode dec,
@@ -14,17 +15,16 @@ module core_control_branch
output ptr branch_target
);
- always_ff @(posedge clk) begin
- branch <= 0;
- if(next_cycle == ISSUE && issue) begin
- branch <= dec.ctrl.branch;
- branch_target <= next_pc_visible + dec.branch.offset;
+ always_ff @(posedge clk or negedge rst_n)
+ if(!rst_n) begin
+ branch <= 1;
+ branch_target <= {$bits(branch_target){1'b0}};
+ end else begin
+ branch <= 0;
+ if(next_cycle == ISSUE && issue) begin
+ branch <= dec.ctrl.branch;
+ branch_target <= next_pc_visible + dec.branch.offset;
+ end
end
- end
-
- initial begin
- branch = 1;
- branch_target = {$bits(branch_target){1'b0}};
- end
endmodule