MIPS .data浮点

时间:2012-04-03 01:41:41

标签: floating-point mips

我宣布了

.data
ZERO    .float     0.0

稍后在我的代码中,我想将ZERO的值放入$ f4

我用什么指示来做这件事?

1 个答案:

答案 0 :(得分:1)

我是MIPS的新手,但这应该可行

 lwc1 $f4, ZERO($0) 

根据这个sample:)

或者如果您使用伪指令(lecture that I found):

la $a0, ZERO     #Load address
l.s $f5, 0($a0)  #Load single from memory a0[0]

有一个特殊的寄存器($ 0),但我认为它只用于整数运算(我不确定)