This commit is contained in:
felsabbagh3
2019-10-18 02:20:38 -04:00
parent 505bbc20c8
commit 559c64cb36
12 changed files with 54 additions and 73 deletions

View File

@@ -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

View File

@@ -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;