Cleanup imports of VX_define
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
module VX_generic_priority_encoder
|
module VX_generic_priority_encoder
|
||||||
#(
|
#(
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
|
|
||||||
module Vortex
|
module Vortex
|
||||||
|
|||||||
2
rtl/cache/VX_Cache_Bank.v
vendored
2
rtl/cache/VX_Cache_Bank.v
vendored
@@ -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"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
2
rtl/cache/VX_cache_bank_valid.v
vendored
2
rtl/cache/VX_cache_bank_valid.v
vendored
@@ -1,4 +1,4 @@
|
|||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
module VX_cache_bank_valid
|
module VX_cache_bank_valid
|
||||||
#(
|
#(
|
||||||
|
|||||||
2
rtl/cache/VX_cache_data.v
vendored
2
rtl/cache/VX_cache_data.v
vendored
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
module VX_cache_data
|
module VX_cache_data
|
||||||
#(
|
#(
|
||||||
|
|||||||
2
rtl/cache/VX_cache_data_per_index.v
vendored
2
rtl/cache/VX_cache_data_per_index.v
vendored
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
|
|
||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
module VX_cache_data_per_index
|
module VX_cache_data_per_index
|
||||||
#(
|
#(
|
||||||
|
|||||||
2
rtl/cache/VX_d_cache.v
vendored
2
rtl/cache/VX_d_cache.v
vendored
@@ -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"
|
||||||
|
|||||||
2
rtl/cache/VX_d_cache_encapsulate.v
vendored
2
rtl/cache/VX_d_cache_encapsulate.v
vendored
@@ -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,
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
`include "../VX_define.v"
|
`include "VX_define.v"
|
||||||
|
|
||||||
`ifndef VX_FrE_to_BE_INTER
|
`ifndef VX_FrE_to_BE_INTER
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user