risc-v Definition fnmadd (RISC-V) Computes the negated fused multiply-add of the floating-point values in registers b, c, and d, and stores the result in register a. fnmadd.s a, b, c, d Equivalent C code: a = -((b * c) + d)