Removed FWD

This commit is contained in:
felsabbagh3
2019-10-18 02:01:39 -04:00
parent 6b729fd2ea
commit 505bbc20c8
20 changed files with 9 additions and 521 deletions

View File

@@ -5,7 +5,6 @@
module VX_d_e_reg (
input wire clk,
input wire reset,
input wire in_fwd_stall,
input wire in_branch_stall,
input wire in_freeze,
input wire in_gpr_stall,
@@ -17,7 +16,7 @@ module VX_d_e_reg (
wire stall = in_freeze;
wire flush = (in_fwd_stall == `STALL) || (in_branch_stall == `STALL) || (in_gpr_stall == `STALL);
wire flush = (in_branch_stall == `STALL) || (in_gpr_stall == `STALL);
VX_generic_register #(.N(237)) d_e_reg

View File

@@ -3,7 +3,6 @@
module VX_f_d_reg (
input wire clk,
input wire reset,
input wire in_fwd_stall,
input wire in_freeze,
input wire in_gpr_stall,
@@ -13,7 +12,7 @@ module VX_f_d_reg (
);
wire flush = 1'b0;
wire stall = in_fwd_stall == 1'b1 || in_freeze == 1'b1 || in_gpr_stall;
wire stall = in_freeze == 1'b1 || in_gpr_stall;