summaryrefslogtreecommitdiff
path: root/rtl/top/fetch_test.sv
diff options
context:
space:
mode:
Diffstat (limited to 'rtl/top/fetch_test.sv')
-rw-r--r--rtl/top/fetch_test.sv25
1 files changed, 0 insertions, 25 deletions
diff --git a/rtl/top/fetch_test.sv b/rtl/top/fetch_test.sv
deleted file mode 100644
index 4ab5fd1..0000000
--- a/rtl/top/fetch_test.sv
+++ /dev/null
@@ -1,25 +0,0 @@
-`timescale 1 ns / 1 ps
-`include "core/uarch.sv"
-
-module fetch_test
-(
- input logic clk,
- stall,
- branch,
- prefetch_flush,
- fetched,
- wr_pc,
- input ptr branch_target,
- input word wr_current,
- fetch_data,
-
- output logic fetch,
- output word insn,
- output ptr insn_pc,
- addr
-
-);
-
- core_fetch #(.PREFETCH_ORDER(3)) DUT (.flush(), .*);
-
-endmodule