summaryrefslogtreecommitdiff
path: root/rtl
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2022-12-06 13:04:15 -0600
committerAlejandro Soto <alejandro@34project.org>2022-12-06 13:04:15 -0600
commit064b72ae4eb22336438288a9664a37c0dd07f4bc (patch)
treebfbe072702b667299979d6ceb76a3ef444fb9c1a /rtl
parentdf69f7b7c73be01968ba767ab112b227533bbd70 (diff)
Implement gdbstub
Diffstat (limited to 'rtl')
-rw-r--r--rtl/top/conspiracion.sv3
1 files changed, 2 insertions, 1 deletions
diff --git a/rtl/top/conspiracion.sv b/rtl/top/conspiracion.sv
index c3ffb93..84b875e 100644
--- a/rtl/top/conspiracion.sv
+++ b/rtl/top/conspiracion.sv
@@ -3,6 +3,7 @@ module conspiracion
input wire clk_clk,
input wire rst_n,
input wire halt,
+ output wire cpu_halted,
output wire [12:0] memory_mem_a,
output wire [2:0] memory_mem_ba,
output wire memory_mem_ck,
@@ -46,7 +47,7 @@ module conspiracion
logic[3:0] data_be;
logic[29:0] addr;
logic[31:0] data_rd, data_wr;
- logic reset_reset_n, cpu_clk, cpu_rst_n, cpu_halt, cpu_halted,
+ logic reset_reset_n, cpu_clk, cpu_rst_n, cpu_halt,
ready, write, start, irq;
`ifdef VERILATOR