ARM 汇编浮点变量

发布于 2024-11-28 10:13:56 字数 400 浏览 2 评论 0原文

我是手臂组装的新手,我从这个网站这里学到了很多东西。 在本节的末尾此处显示了如何声明汇编中的变量如下所示:

integer_array:
  .word 1,2,3,4

这对于整数来说效果很好,但我需要能够对浮点数执行此操作,而这:

float_array:
  .word 1.25,2.24,3.33

不起作用,有人可以展示声明浮点变量的正确方法吗?

Im new to arm assembly and ive been learning a lot from this website here.
At the end of this section here there its shows how to declare variables in assembly like so:

integer_array:
  .word 1,2,3,4

this works fine for integers but I need to be able to do this for floats and this:

float_array:
  .word 1.25,2.24,3.33

does not work, could someone show the correct way to declare float variables?

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

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

发布评论

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

评论(1

夏花。依旧 2024-12-05 10:13:56

尝试

.single 0e1.25, 0e2.24, 0e3.33

(或.double)。请参阅 flonums 的气体手册。

Try

.single 0e1.25, 0e2.24, 0e3.33

(or .double). See the gas manual for flonums.

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