我有下面的ARM霓虹灯代码说明。你能告诉我在“gcc”中对应的词是什么吗?
label
DCFS 1.5
DCFS -1.4我不确定,但我认为在gcc中做到这一点的唯一方法就是使用表格。
PLease让我知道在gcc中是否有类似的表示。
发布于 2015-05-22 15:44:01
https://sourceware.org/binutils/docs/as/Float.html#Float
.float flonums
此指令汇编零个或多个flonum,用逗号分隔。它与.single具有相同的效果。
我找不到任何关于对齐保证的参考资料,但从实验中看似乎没有。
$ cat f.s
.data
.byte 0xaa
.float 3.14
.byte 0x55
.text
test:
mov r0, r1
$ as f.s -o f.o
$ objdump -s -j .data f.o
f.o: file format elf32-littlearm
Contents of section .data:
0000 aac3f548 4055 ...H@U https://stackoverflow.com/questions/30370098
复制相似问题