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.
|
from power_fv.insn import const
|
|
from power_fv.insn.spec.syscall import SystemCallSpec
|
|
from power_fv.check.insn import InsnCheck
|
|
|
|
|
|
__all__ = ["SC"]
|
|
|
|
|
|
class SC(InsnCheck, spec_cls=SystemCallSpec, insn_cls=const.SC): pass
|