Merge pull request #1941 from motec-research/vexriscv_debug_halted

cpu/vexriscv: expose o_halted
This commit is contained in:
enjoy-digital 2024-04-26 13:43:40 +02:00 committed by GitHub
commit 76a704377f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -210,6 +210,7 @@ class VexRiscv(CPU, AutoCSR):
self.o_cmd_ready = Signal()
self.o_rsp_data = Signal(32)
self.o_resetOut = Signal()
self.o_halted = Signal()
reset_debug_logic = Signal()
@ -278,7 +279,8 @@ class VexRiscv(CPU, AutoCSR):
i_debug_bus_cmd_payload_data = self.i_cmd_payload_data,
o_debug_bus_cmd_ready = self.o_cmd_ready,
o_debug_bus_rsp_data = self.o_rsp_data,
o_debug_resetOut = self.o_resetOut
o_debug_resetOut = self.o_resetOut,
o_halted = self.o_halted,
)
def add_cfu(self, cfu_filename):