def __init__(self, opcode, arg, size):
# Numeric code for operation, corresponding to the opcode values
self.opcode = opcode
# Numeric argument to operation(if any), otherwise None
self.arg = arg
# The size of the instruction including the arguement
self.size = size
# Resolved arg value (if known), otherwise same as arg
self.argval = arg
# Human readable name for operation
self.mnemonic = dis.opname[self.opcode]
instruction.py 文件源码
python
阅读 18
收藏 0
点赞 0
评论 0
评论列表
文章目录