Skip to content

Commit a4b3489

Browse files
committedJul 19, 2012
Forgot to put this back before last commit
1 parent 062e999 commit a4b3489

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎lm32_instruction_unit.v

+4
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,10 @@ begin
575575
`endif
576576
pc_a = branch_target_m;
577577
end
578+
`ifdef CFG_FAST_UNCONDITIONAL_BRANCH
579+
else if (branch_taken_x == `TRUE)
580+
pc_a = branch_target_x;
581+
`endif
578582
else
579583
if ( (valid_d == `TRUE) && (branch_predict_taken_d == `TRUE) )
580584
begin

0 commit comments

Comments
 (0)
Please sign in to comment.