You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
307 B
Python
13 lines
307 B
Python
from power_fv.insn import const
|
|
from power_fv.insn.spec.msr import MSRMoveSpec
|
|
from power_fv.check.insn import InsnCheck
|
|
|
|
|
|
__all__ = [
|
|
"MTMSR", "MFMSR",
|
|
]
|
|
|
|
|
|
class MTMSR(InsnCheck, spec_cls=MSRMoveSpec, insn_cls=const.MTMSR): pass
|
|
class MFMSR(InsnCheck, spec_cls=MSRMoveSpec, insn_cls=const.MFMSR): pass
|