行业解决方案查看所有行业解决方案
IDA 用于解决软件行业的关键问题。
发布时间:2023-04-25 17: 08: 58
Action name: ToggleLeadingZeroes
This command displays or hides the leading zeroes of the current operand. Example: if the instruction looked like this:
and ecx, 40h
then after applying the command it will look like this:
and ecx, 00000040h
If you prefer to see leading zeroes in all cases, then open the calculator and enter the following expression:
set_inf_attr(INF_GENFLAGS, get_inf_attr(INF_GENFLAGS) | INFFL_LZERO);
This will toggle the default for the current database and all numbers without leading zeroes will become numbers with leading zeroes, and vice versa.
See also Edit|Operand types|Number submenu.
中文翻译:
操作名称:ToggleLeadingZeroes
此命令显示或隐藏当前操作数的前导零。示例:如果指令看起来像这样:和ecx,40h
应用该命令后,它会看起来像:和ecx,00000040h
如果您希望在所有情况下都看到前导零,然后打开计算器,输入以下表达式:set_inf_attr(inf_GENFLAGS,get_inf_atr(inf_GENFLAGS)|INFFL_LZERO);
这将切换当前数据库的默认值,所有没有前导零的数字都将变成有前导零的数值,反之亦然。
另请参阅编辑|操作数类型|数字子菜单。
展开阅读全文
︾