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_fetch (
input wire clk,
input wire in_memory_delay,
input wire in_branch_stall,
input wire in_fwd_stall,
input wire in_branch_stall_exe,
input wire in_gpr_stall,
input wire schedule_delay,
@@ -29,7 +28,7 @@ module VX_fetch (
wire warp_stall;
assign pipe_stall = in_gpr_stall || in_fwd_stall || in_freeze || schedule_delay;
assign pipe_stall = in_gpr_stall || in_freeze || schedule_delay;
assign warp_stall = in_branch_stall || (in_branch_stall_exe && 0);