How do you take in an input of a floating number in MIPS? I have tried using:
li.s $f0, 6
syscall
But I just keep getting that there is an error with the line.
How do you take in an input of a floating number in MIPS? I have tried using:
li.s $f0, 6
syscall
But I just keep getting that there is an error with the line.
li $v0, 6
syscall
//the float value that is read will be in $f0 register