comments
[soc.git] / src / soc / decoder / isa / caller.py
index 147761996cec4b3e2ddff9a4ed1f65a050ac44b3..7ade13afd13381ab3df36fde8343973e39d0fbc3 100644 (file)
@@ -687,7 +687,7 @@ class ISACaller:
         # SVP64.  first, check if the opcode is EXT001, and SVP64 id bits set
         yield Settle()
         opcode = yield self.dec2.dec.opcode_in
-        pfx = SVP64PrefixFields()
+        pfx = SVP64PrefixFields() # TODO should probably use SVP64PrefixDecoder
         pfx.insn.value = opcode
         major = pfx.major.asint(msb0=True) # MSB0 inversion
         print ("prefix test: opcode:", major, bin(major),