本文整理汇总了Python中tdasm.Tdasm.get_struct方法的典型用法代码示例。如果您正苦于以下问题:Python Tdasm.get_struct方法的具体用法?Python Tdasm.get_struct怎么用?Python Tdasm.get_struct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tdasm.Tdasm
的用法示例。
在下文中一共展示了Tdasm.get_struct方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _create_struct
# 需要导入模块: from tdasm import Tdasm [as 别名]
# 或者: from tdasm.Tdasm import get_struct [as 别名]
def _create_struct(self, struct_def, name):
code = " #DATA \n" + struct_def + """
#CODE
#END
"""
mc = Tdasm().assemble(code)
return mc.get_struct(name)
示例2: _create_struct
# 需要导入模块: from tdasm import Tdasm [as 别名]
# 或者: from tdasm.Tdasm import get_struct [as 别名]
def _create_struct(self, shape):
code = " #DATA " + shape.asm_struct() + """
#CODE
#END
"""
mc = Tdasm().assemble(code)
return mc.get_struct(shape.asm_struct_name())
示例3: _create_struct
# 需要导入模块: from tdasm import Tdasm [as 别名]
# 或者: from tdasm.Tdasm import get_struct [as 别名]
def _create_struct(self, struct_def, name):
code = " #DATA \n" + struct_def + """
#CODE
#END
"""
ia32 = True
bits = platform.architecture()[0]
if bits == '64bit':
ia32 = False
mc = Tdasm().assemble(code, ia32=ia32)
return mc.get_struct(name)