I cannot use li.s in MARS. I am new to MIPS programming and I am trying not to use any co processors. Why can I not use li.s is MARS the program? It would be very helpful is someone could lead me in a new direction!
|
feedback
|
|
You can achieve the same effect as the pseudoinstruction li.s using pseudoinstruction l.s and the constant stored in the data segment:
That will use the coprocessor register $f1 to store the floating point constant. You can also put the constant in a regular register using | |||||||||||
feedback
|
|
It is a pseudoinstruction, which is probably not implemented in mars. You can use sequence of li (ori) and mtc1. This loads the value 1.234 to $fp1 and works in MARS:
the hexadecimal or integer value can be found using http://babbage.cs.qc.edu/IEEE-754/Decimal.html or using a simple program (in Fortran, in C is similar using a pointer cast):
| |||||||
feedback
|