I wish to access the value of the MIPS coprocessor 1 condition flag.
For example
c.eq.s $f4 $f6
move $t0 condflag1 #clearly illegal
I understand that the following is possible:
c.eq.s $f4 $f6
bc1f L_CondFalse
li $t0 0
j L_CondEnd
L_CondFalse : li $t0 1
L_CondEnd :
Any ideas?