RTL code refactoring

This commit is contained in:
Blaise Tine
2020-04-20 13:52:24 -04:00
parent 94e4f056db
commit 1a2823da0d
31 changed files with 253 additions and 260 deletions

View File

@@ -1,16 +1,16 @@
`include "../VX_define.vh"
module VX_d_e_reg (
input wire clk,
input wire clk,
input wire reset,
input wire in_branch_stall,
input wire in_freeze,
input wire branch_stall_i,
input wire freeze_i,
VX_frE_to_bckE_req_if frE_to_bckE_req_if,
VX_frE_to_bckE_req_if bckE_req_if
);
wire stall = in_freeze;
wire flush = (in_branch_stall == `STALL);
wire stall = freeze_i;
wire flush = (branch_stall_i == `STALL);
VX_generic_register #(
.N(233 + `NW_BITS-1 + 1 + `NUM_THREADS)