gpt4 book ai didi

c - 将 PowerPC 逆向为 C

转载 作者:太空宇宙 更新时间:2023-11-04 01:30:03 25 4
gpt4 key购买 nike

当谈到按位函数时,我不是最好的,但我想弄清楚它是如何工作的。一旦弄清楚这是如何工作的,我可能就能弄清楚其余部分。

ori r11, r11, 11

如何将其翻译成 C 语言?我做得对吗?

r11 = (r11 | 11);

我知道这不是正确的 C 语法,我只想对它有一个基本的了解。

最佳答案

ori指令是或立即数:ori RA RS UI

哪里:

 RA = the resulting register to store the operation result
RS = the source register for which to use in the operation
UI is an unsigned 16-bit integer for the operation

你已经正确地解释了它,你的 C 看起来也有效。

不过请注意,PowerPC 是一种大端架构,因此如果您计划比较非大端平台(例如 Intel x86)的任何数据,您将无法获得正确的数据结果。语法不会改变,“低阶位”的位置会改变。

关于c - 将 PowerPC 逆向为 C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24190374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com