From: Luke Kenneth Casson Leighton Date: Sun, 12 Dec 2021 19:10:36 +0000 (+0000) Subject: drat, a test inverting the instruction made it into the git history X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=670d2391087c289095063e88fe1281ca96886f7e;p=soc.git drat, a test inverting the instruction made it into the git history --- 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