From 11a85969da9bcc61172495fc14d0c2b1ed9a95cb Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Mon, 7 Sep 2020 18:13:33 +0100 Subject: [PATCH] whoops spelling mistake outOut_carry not outPut_carry --- src/soc/decoder/isa/caller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/decoder/isa/caller.py b/src/soc/decoder/isa/caller.py index 3c7689f0..8a0df5e3 100644 --- a/src/soc/decoder/isa/caller.py +++ b/src/soc/decoder/isa/caller.py @@ -724,7 +724,7 @@ class ISACaller: already_done |= 2 print("carry already done?", bin(already_done)) - if hasattr(self.dec2.e.do, "outout_carry"): + if hasattr(self.dec2.e.do, "output_carry"): carry_en = yield self.dec2.e.do.output_carry else: carry_en = False -- 2.30.2