I am having trouble using the ceiling instruction.
I am new to assembly and have never used the
ceiling instruction before.
My values before the instruction are
$f10 = 1.1000005
$f12 = 1.0000000
the instruction I use is
ceil.w.s $f12,$f10
the value that ends up in $f12 is 2.80260e-045
which obviously returns 0.0000000 when I use
the li $v0, 2 syscall ..
what am I doing wrong?