From 064b72ae4eb22336438288a9664a37c0dd07f4bc Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Tue, 6 Dec 2022 13:04:15 -0600 Subject: Implement gdbstub --- rtl/top/conspiracion.sv | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rtl/top') 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 -- cgit v1.2.3