From: Cesar Strauss Date: Thu, 23 Dec 2021 10:56:42 +0000 (-0300) Subject: Re-enable core stopped signal when stopped. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67f14bcb5cd27a55e1ea1b894e0a9ba7686ff48f;p=soc.git Re-enable core stopped signal when stopped. --- 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)