寻找翻转/反转字中字节的指令

发布于 2024-10-17 08:26:25 字数 83 浏览 12 评论 0原文

我需要翻转/反转 4 字节字中的字节,以便将其显示在 LED 显示屏上。

显然有一个简单的指令可以完成此操作,但我无法在任何地方找到它。

I need to flip/reverse the bytes in a 4-byte word, for the purpose of displaying it on LED display.

Apparently there is one simple instruction to accomplish this, but I was unable to find it anywhere.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

土豪我们做朋友吧 2024-10-24 08:26:25

也不?

nor $d,$s,$t    $d = ~ ($s | $t)

编辑:

似乎找不到32位字节交换指令,但是您可以对半字进行字节交换,然后交换半字吗?

li   $t0,0xABCD    ;ABCD
wbsh $t0,$t0       ;BADC
rotr $v0,$v0,16    ;DCBA

nor?

nor $d,$s,$t    $d = ~ ($s | $t)

Edit:

Can't seem to find a 32-bit byteswap instruction, but can you byteswap the halfwords and then swap the halfwords?

li   $t0,0xABCD    ;ABCD
wbsh $t0,$t0       ;BADC
rotr $v0,$v0,16    ;DCBA
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文