migrated 100% to modelsim

This commit is contained in:
felsabbagh3
2019-10-27 20:08:44 -04:00
parent 715982cca7
commit 0ee74bc566
13 changed files with 282 additions and 157 deletions

View File

@@ -7,7 +7,9 @@ module Vortex
parameter CACHE_SIZE = 4096, // Bytes
parameter CACHE_WAYS = 1,
parameter CACHE_BLOCK = 128, // Bytes
parameter CACHE_BANKS = 8
parameter CACHE_BANKS = 8,
localparam NUMBER_BANKS = 8,
localparam NUM_WORDS_PER_BLOCK = 4
)
(
input wire clk,
@@ -30,9 +32,6 @@ module Vortex
output wire out_ebreak
);
localparam NUMBER_BANKS = 8;
localparam NUM_WORDS_PER_BLOCK = 4;
wire memory_delay;
wire gpr_stage_delay;
wire schedule_delay;