Advertisement
Guest User

Untitled

a guest
Apr 19th, 2022
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. class SVP64PrefixFields(SelectableIntMapping):
  2.     def __init__(self):
  3.         super().__init__(value=0, bits=32, fields={
  4.             # 6 bit major opcode EXT001, 2 bits "identifying" (7, 9), 24 SV ReMap
  5.             "major": range(0, 6),
  6.             "pid": (7, 9),
  7.             # SVP64 24-bit RM (ReMap)
  8.             "rm": ((6, 8) + tuple(range(10, 32))),
  9.         })
  10.         self.insn = self
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement