1 2 3 4 5 6
int FNEGS(unsigned long *rd, unsigned long *rs2) { /* just change the sign bit */ rd[0] = rs2[0] ^ 0x80000000UL; return 1; }