汇编器错误:指令错误

发布于 2024-12-21 05:06:43 字数 597 浏览 3 评论 0原文

我遇到了这个错误

/tmp/ccK86fyk.s: Assembler messages:
/tmp/ccK86fyk.s:69: Error: bad instruction `sw $3,0(r3)'
/tmp/ccK86fyk.s:70: Error: bad instruction `sw $7,4(r3)'

(这个长代码的其余部分在此粘贴中。: http://pastebin.com/6YRx8rDh

CPU是maemo fremantle构建的项目中的arm Cortex-A8。

那么好吧,我的汇编知识很少,一直在研究和学习 更多关于它的信息,但我似乎无法理解这个错误。 我也google了好几天了,没有找到具体的 回答我的问题。

这是包含导致错误的行的标头。: http://pastebin.com/k3D4cg0d​​

(提供有关评论的更多信息,因为我不能发布超过 2 个链接)

I've run into this error

/tmp/ccK86fyk.s: Assembler messages:
/tmp/ccK86fyk.s:69: Error: bad instruction `sw $3,0(r3)'
/tmp/ccK86fyk.s:70: Error: bad instruction `sw $7,4(r3)'

( The rest of this long code is in this paste.: http://pastebin.com/6YRx8rDh )

The CPU is an arm Cortex-A8 in a project built in maemo fremantle.

So well, I have little assembly knowledge, and I've been studying it and learning
a bit more about it, but I can't seem to understand this error.
I've also researched thoughout google for a few days now, and I can't find a concrete
answer to my problem.

This is the header that has the lines that results in errors.: http://pastebin.com/k3D4cg0d

( Provided more informations on a comment, since I cannot post more than 2 links )

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

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

发布评论

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

评论(2

月隐月明月朦胧 2024-12-28 05:06:43

SW和LW是MIPS架构的操作码(加载字和存储字)。
您不能将此汇编代码与 Cortex A8 一起使用。

PS:抱歉,我之前说过这是Aarch64指令。我错了...

SW and LW are opcode for MIPS architecture (Load word et Store Word).
You can't use this Assembly code with a Cortex A8.

PS: Sorry, I previously said that it was Aarch64 instruction. I was wrong...

古镇旧梦 2024-12-28 05:06:43

我在使用“arm-none-linux-gnueabi-gcc version 4.5.1”编译内核时遇到了这个问题,并使用“arm-none-linux-gnueabi-gcc version 4.8.3”修复它

I met this problem when use "arm-none-linux-gnueabi-gcc version 4.5.1" compile the kernel, and fix it by using "arm-none-linux-gnueabi-gcc version 4.8.3"

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