我如何在 RISC V 汇编中声明一个向量?
How i can declare a vector in RISC V assembly?
在 mips 中,我可以做到(工作正常):
.data
a: .word -7,8,107,11,13 #vector
但是在模拟器Ripes中,我做不到,这是一个错误或者有其他模式可以写"vector"?
.word
-声明是 defined 作为 .word expression [, expression]* 32-bit comma separated words
并且您的代码使用 gcc
编译,所以我认为模拟器
就是不支持。
在 mips 中,我可以做到(工作正常):
.data
a: .word -7,8,107,11,13 #vector
但是在模拟器Ripes中,我做不到,这是一个错误或者有其他模式可以写"vector"?
.word
-声明是 defined 作为 .word expression [, expression]* 32-bit comma separated words
并且您的代码使用 gcc
编译,所以我认为模拟器
就是不支持。