编译 mips 不一致

发布于 2024-12-10 03:18:36 字数 282 浏览 0 评论 0原文

通常我在编写汇编、测试和调试时不会遇到问题。但有时编译器不喜欢换行符,我不知道为什么。这个问题通常发生在 Berkeley spim 模拟器

示例代码中:

.text
.globl __start

__start:

la $a0,crlf
li $v0,4
syscall

li $v0,10
syscall

.data

crlf: .asciiz "\n"

我做错了什么?

Usually I don't have problems writing assembly and testing and debugging. But then sometimes the compiler doesn't like the newline character and I don't know why. This problem usually happens with the Berkeley spim simulator

sample code:

.text
.globl __start

__start:

la $a0,crlf
li $v0,4
syscall

li $v0,10
syscall

.data

crlf: .asciiz "\n"

what am I doing wrong?

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

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

发布评论

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

评论(2

酷遇一生 2024-12-17 03:18:36

另一种方法是

    crlf: .byte 13,10,00

当 \n 给我带来问题时我使用的方法。

Another way to do it would be

    crlf: .byte 13,10,00

This is what I use when \n gives me issues.

ゞ花落谁相伴 2024-12-17 03:18:36

也许您应该尝试使用

crlf:
.db 0x0A 0x0D 0x00

另请记住,只有 Windows 使用 CRLF 来换行。大多数系统仅使用 CR。

Maybe you should try with

crlf:
.db 0x0A 0x0D 0x00

Also keep in mind that only Windows uses CRLF for a new line. Most systems use CR only.

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