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.

11 lines
304 B
Python

from power_fv.insn import const
from power_fv.insn.spec.byterev import ByteReverseSpec
from power_fv.check.insn import InsnCheck
__all__ = ["BRH", "BRW"]
class BRH(InsnCheck, spec_cls=ByteReverseSpec, insn_cls=const.BRH): pass
class BRW(InsnCheck, spec_cls=ByteReverseSpec, insn_cls=const.BRW): pass