RVSCC/rtl/jump_control.sv
Mario Romero bd2f58d5f6
Some checks are pending
continuous-integration/drone/push Build is pending
Change name scheme and add tests
2023-02-26 20:26:11 -03:00

23 lines
482 B
Systemverilog

`timescale 1ns / 1ps
module jump_control (
input logic jump,
input logic branch,
input logic branch_alu_neg,
input logic zero,
output logic pc_src
);
logic alu_result, branch_result;
assign alu_result = !zero;
always_comb begin
case (branch_alu_neg)
'd0: branch_result = alu_result;
'd1: branch_result = !alu_result;
default: branch_result = 1'dx;
endcase
end
assign pc_src = (branch & branch_result) | jump;
endmodule