summaryrefslogtreecommitdiff
path: root/rtl/top/fetch_test.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-10-05 00:36:37 -0600
committerAlejandro Soto <alejandro@34project.org>2023-10-05 13:07:57 -0600
commit4acd900c4602db0353d11bf6841ddadfd80c57b8 (patch)
treefe24637ccd16fefcf25f0c8d8e65b01d19a1760c /rtl/top/fetch_test.sv
parentd173727c1ed34652613fc046d522a43ac9ef015e (diff)
Makefile, tb: add support for cocotb
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