From 849cff9b62cc60632fa1f69059ec3fdbfc840cb5 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 4 Feb 2021 16:53:53 +0000 Subject: [PATCH] comment update --- 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 7730ce19..d8774b4c 100644 --- a/src/soc/decoder/isa/caller.py +++ b/src/soc/decoder/isa/caller.py @@ -247,7 +247,7 @@ class SVP64PrefixFields: # 6 bit major opcode EXT001, 2 bits "identifying" (7, 9), 24 SV ReMap self.major = FieldSelectableInt(self.insn, tuple(range(0,6))) self.pid = FieldSelectableInt(self.insn, (7, 9)) # must be 0b11 - rmfields = [6, 8] + list(range(10,32)) # SVP64 24-bit RM + rmfields = [6, 8] + list(range(10,32)) # SVP64 24-bit RM (ReMap) self.rm = FieldSelectableInt(self.insn, rmfields) -- 2.30.2