From: Luke Kenneth Casson Leighton Date: Thu, 4 Feb 2021 16:53:53 +0000 (+0000) Subject: comment update X-Git-Tag: convert-csv-opcode-to-binary~251 X-Git-Url: https://git.libre-soc.org/?p=soc.git;a=commitdiff_plain;h=849cff9b62cc60632fa1f69059ec3fdbfc840cb5;ds=sidebyside comment update --- 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)