Cleanup
This commit is contained in:
@@ -7,7 +7,6 @@ module VX_d_e_reg (
|
||||
input wire reset,
|
||||
input wire in_branch_stall,
|
||||
input wire in_freeze,
|
||||
input wire in_gpr_stall,
|
||||
VX_frE_to_bckE_req_inter VX_frE_to_bckE_req,
|
||||
|
||||
|
||||
@@ -16,7 +15,7 @@ module VX_d_e_reg (
|
||||
|
||||
|
||||
wire stall = in_freeze;
|
||||
wire flush = (in_branch_stall == `STALL) || (in_gpr_stall == `STALL);
|
||||
wire flush = (in_branch_stall == `STALL);
|
||||
|
||||
|
||||
VX_generic_register #(.N(237)) d_e_reg
|
||||
|
||||
@@ -4,7 +4,6 @@ module VX_f_d_reg (
|
||||
input wire clk,
|
||||
input wire reset,
|
||||
input wire in_freeze,
|
||||
input wire in_gpr_stall,
|
||||
|
||||
VX_inst_meta_inter fe_inst_meta_fd,
|
||||
VX_inst_meta_inter fd_inst_meta_de
|
||||
@@ -12,7 +11,7 @@ module VX_f_d_reg (
|
||||
);
|
||||
|
||||
wire flush = 1'b0;
|
||||
wire stall = in_freeze == 1'b1 || in_gpr_stall;
|
||||
wire stall = in_freeze == 1'b1;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user