ARM 汇编浮点变量
我是手臂组装的新手,我从这个网站这里学到了很多东西。 在本节的末尾此处显示了如何声明汇编中的变量如下所示:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试
(或
.double
)。请参阅 flonums 的气体手册。Try
(or
.double
). See the gas manual for flonums.