From 67f14bcb5cd27a55e1ea1b894e0a9ba7686ff48f Mon Sep 17 00:00:00 2001 From: Cesar Strauss Date: Thu, 23 Dec 2021 07:56:42 -0300 Subject: [PATCH] Re-enable core stopped signal when stopped. --- src/soc/simple/issuer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/simple/issuer.py b/src/soc/simple/issuer.py index 5cd32234..6da1610c 100644 --- a/src/soc/simple/issuer.py +++ b/src/soc/simple/issuer.py @@ -1088,7 +1088,7 @@ class TestIssuerInternal(TestIssuerBase): m.next = "INSN_WAIT" with m.Else(): # tell core it's stopped, and acknowledge debug handshake - #comb += dbg.core_stopped_i.eq(1) + comb += dbg.core_stopped_i.eq(1) # while stopped, allow updating SVSTATE with m.If(self.svstate_i.ok): comb += new_svstate.eq(self.svstate_i.data) -- 2.30.2