Skip to content

Commit

Permalink
Update EXMEM.sv removed branch taken'
Browse files Browse the repository at this point in the history
  • Loading branch information
ShinyMiraidon authored Oct 31, 2023
1 parent 3e8b2ff commit db09c16
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions rtl/EXMEM.sv
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ module EXMEM #(
input clk, rstn,
input [4:0] rdn_in,
input [WordSize - 1:0] alu_out_in, rs2d,
input branch_taken_in,
output logic branch_taken,
output logic [4:0] rdn,
output logic [WordSize - 1:0] alu_out, mem_data
);
Expand All @@ -15,12 +13,10 @@ module EXMEM #(
rdn <= 0;
alu_out <= 0;
mem_data <= 0;
branch_taken <= 0;
end
else begin
rdn <= rdn_in;
alu_out <= alu_out_in;
branch_taken <= branch_taken_in;
mem_data <= rs2d;
end
end
Expand Down

0 comments on commit db09c16

Please sign in to comment.