summaryrefslogtreecommitdiff
path: root/rtl/top/smp_sim.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-10-06 16:41:15 -0600
committerAlejandro Soto <alejandro@34project.org>2023-10-06 16:41:15 -0600
commitf786c0f2f6f00cab2203de4a672801ca9c179415 (patch)
tree2de9f66c47d983ca2a413058416d3180153b89cd /rtl/top/smp_sim.sv
parent95770fcd6224b54666ec14480bcbebb6e39a7b5f (diff)
tb: rename smp_sim to test_smp
Diffstat (limited to 'rtl/top/smp_sim.sv')
-rw-r--r--rtl/top/smp_sim.sv36
1 files changed, 0 insertions, 36 deletions
diff --git a/rtl/top/smp_sim.sv b/rtl/top/smp_sim.sv
deleted file mode 100644
index ff4d8a1..0000000
--- a/rtl/top/smp_sim.sv
+++ /dev/null
@@ -1,36 +0,0 @@
-module smp_sim
-(
- input logic clk,
- rst_n,
-
- input logic avl_address, // No se usa, pero cocotb_bus lo requiere
- avl_read,
- avl_write,
- input logic[31:0] avl_writedata,
- output logic[31:0] avl_readdata,
-
- input logic cpu_halted_0,
- cpu_halted_1,
- cpu_halted_2,
- cpu_halted_3,
- input logic breakpoint_0,
- breakpoint_1,
- breakpoint_2,
- breakpoint_3,
-
- output logic halt_0,
- halt_1,
- halt_2,
- halt_3,
- step_0,
- step_1,
- step_2,
- step_3
-);
-
- smp_ctrl dut
- (
- .*
- );
-
-endmodule