Cleanup imports of VX_define

This commit is contained in:
wgulian3
2020-02-04 10:54:25 -05:00
parent d727404f3b
commit 8d20b52ea2
11 changed files with 12 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
`include "../VX_define.v" `include "VX_define.v"
module VX_generic_priority_encoder module VX_generic_priority_encoder
#( #(

View File

@@ -1,4 +1,4 @@
`include "../VX_define.v" `include "VX_define.v"
module VX_priority_encoder_w_mask module VX_priority_encoder_w_mask
#( #(
parameter N = 10 parameter N = 10

View File

@@ -20,8 +20,8 @@ module VX_warp (
); );
reg[31:0] real_PC; reg[31:0] real_PC;
var[31:0] temp_PC; logic [31:0] temp_PC;
var[31:0] use_PC; logic [31:0] use_PC;
reg[`NT_M1:0] valid; reg[`NT_M1:0] valid;
reg[`NT_M1:0] valid_zero; reg[`NT_M1:0] valid_zero;

View File

@@ -1,5 +1,5 @@
`include "../VX_define.v" `include "VX_define.v"
module Vortex module Vortex

View File

@@ -2,7 +2,7 @@
// Also add a bit about wheter the "Way ID" is valid / being held or if it is just default // Also add a bit about wheter the "Way ID" is valid / being held or if it is just default
// Also make sure all possible output states are transmitted back to the bank correctly // Also make sure all possible output states are transmitted back to the bank correctly
`include "../VX_define.v" `include "VX_define.v"
// `include "VX_cache_data.v" // `include "VX_cache_data.v"

View File

@@ -1,4 +1,4 @@
`include "../VX_define.v" `include "VX_define.v"
module VX_cache_bank_valid module VX_cache_bank_valid
#( #(

View File

@@ -1,6 +1,6 @@
`include "../VX_define.v" `include "VX_define.v"
module VX_cache_data module VX_cache_data
#( #(

View File

@@ -1,6 +1,6 @@
`include "../VX_define.v" `include "VX_define.v"
module VX_cache_data_per_index module VX_cache_data_per_index
#( #(

View File

@@ -8,7 +8,7 @@
// TO DO: // TO DO:
// - Send in a response from memory of what the data is from the test bench // - Send in a response from memory of what the data is from the test bench
`include "../VX_define.v" `include "VX_define.v"
//`include "VX_priority_encoder.v" //`include "VX_priority_encoder.v"
// `include "VX_Cache_Bank.v" // `include "VX_Cache_Bank.v"
//`include "cache_set.v" //`include "cache_set.v"

View File

@@ -1,7 +1,7 @@
`include "VX_define.v" `include "VX_define.v"
// `define NUM_WORDS_PER_BLOCK 4 `define NUM_WORDS_PER_BLOCK 4
module VX_d_cache_encapsulate ( module VX_d_cache_encapsulate (
clk, clk,

View File

@@ -1,5 +1,5 @@
`include "../VX_define.v" `include "VX_define.v"
`ifndef VX_FrE_to_BE_INTER `ifndef VX_FrE_to_BE_INTER