From 670d2391087c289095063e88fe1281ca96886f7e Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Sun, 12 Dec 2021 19:10:36 +0000 Subject: [PATCH] drat, a test inverting the instruction made it into the git history --- 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 48cc6b7e..3d285baa 100644 --- a/src/soc/simple/issuer.py +++ b/src/soc/simple/issuer.py @@ -281,7 +281,7 @@ class FetchFSM(ControlBase): # not busy (or fetch failed!): instruction fetched # when fetch failed, the instruction gets ignored # by the decoder - insn = ~get_insn(self.imem.f_instr_o, cur_state.pc) + insn = get_insn(self.imem.f_instr_o, cur_state.pc) if self.svp64_en: svp64 = self.svp64 # decode the SVP64 prefix, if any -- 2.30.2