行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-23 15: 41: 40
Action name:Assemble
This command allows you to assemble instructions.Currently,only the IBM PC processors provide an assembler,nonetheless,plugin writers can extend or totally replace the built-in assembler by writing their own.
The assembler requires to enclose all memory references into square brackets.For example:
mov ax,[counter]
Also,the keyword'offset'must not be used.Instead of
mov eax,offset name
you must write
mov eax,name
以下为中文翻译:
动作名称:汇编此命令允许您汇编指令。
目前,只有IBM PC处理器提供汇编程序,但插件编写器可以通过编写自己的汇编程序来扩展或完全替换内置汇编程序。
汇编程序要求将所有内存引用括在方括号中。
例如:
mov ax,[counter]
此外,决不能使用关键字“offset”。
您必须编写mov eax,name而不是mov eax,offset name
展开阅读全文
︾