From 6b4bab70bb0e1d300186d9afef68962bf2782981 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 24 Jul 2020 14:50:23 +0100 Subject: [PATCH] annoying, typo --- 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 e1abc248..2b563f3c 100644 --- a/src/soc/decoder/isa/caller.py +++ b/src/soc/decoder/isa/caller.py @@ -475,7 +475,7 @@ class ISACaller: def handle_comparison(self, outputs): out = outputs[0] - assert isinstance(out, SelectableInt, + assert isinstance(out, SelectableInt), "out zero not a SelectableInt %s" % repr(outputs)) print("handle_comparison", out.bits, hex(out.value)) # TODO - XXX *processor* in 32-bit mode -- 2.30.2